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

Merge pull request #5137 from cgundogan/pr/gnrc_rpl/thread_prio

gnrc_rpl: thread prio greater than gnrc_ipv6
This commit is contained in:
Cenk Gündoğan 2016-03-22 20:26:06 +01:00
commit 01d95afb14

View File

@ -69,6 +69,7 @@
#include <string.h>
#include <stdint.h>
#include "net/gnrc.h"
#include "net/gnrc/ipv6.h"
#include "net/ipv6/addr.h"
#include "net/gnrc/nettype.h"
#include "net/gnrc/rpl/structs.h"
@ -93,7 +94,7 @@ extern "C" {
* @brief Default priority for the RPL thread
*/
#ifndef GNRC_RPL_PRIO
#define GNRC_RPL_PRIO (THREAD_PRIORITY_MAIN - 4)
#define GNRC_RPL_PRIO (GNRC_IPV6_PRIO + 1)
#endif
/**