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

ng_netreg: warn about context overwrite

This commit is contained in:
Martine Lenders 2015-07-19 11:22:29 +02:00
parent 06da693933
commit 7885c486cf

View File

@ -75,6 +75,9 @@ void ng_netreg_init(void);
* @param[in] entry An entry you want to add to the registry with
* ng_netreg_entry_t::pid and ng_netreg_entry_t::demux_ctx set.
*
* @warning Call ng_netreg_unregister() *before* you leave the context you
* allocated @p entry in. Otherwise it might get overwritten.
*
* @return 0 on success
* @return -EINVAL if @p type was < NG_NETTYPE_UNDEF or >= NG_NETTYPE_NUMOF
*/