1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #3306 from authmillenon/ng_sixlowpan/doc/clarify

ng_sixlowpan: clarify documentation
This commit is contained in:
Oleg Hahm 2015-07-03 11:06:15 +02:00
commit 7c44421da5

View File

@ -73,8 +73,13 @@ static inline bool ng_sixlowpan_nalp(uint8_t disp)
/**
* @brief Initialization of the 6LoWPAN thread.
*
* @details If 6LoWPAN was already initialized, it will just return the PID of
* the 6LoWPAN thread.
*
* @return The PID to the 6LoWPAN thread, on success.
* @return -EOVERFLOW, if there are too many threads running already
* @return -EINVAL, if @ref NG_SIXLOWPAN_PRIO was greater than or equal to
* @ref SCHED_PRIO_LEVELS
* @return -EOVERFLOW, if there are too many threads running already in general
*/
kernel_pid_t ng_sixlowpan_init(void);