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

Merge pull request #2774 from kaspar030/fix_pktdump_priority

sys: net: ng_pktdump: make pktdump have higher-than-main priority
This commit is contained in:
Peter Kietzmann 2015-04-09 22:41:18 +02:00
commit 7cbc667199

View File

@ -39,7 +39,7 @@ extern "C" {
* @brief Priority of the pktdump thread
*/
#ifndef NG_PKTDUMP_PRIO
#define NG_PKTDUMP_PRIO (PRIORITY_MIN - 1)
#define NG_PKTDUMP_PRIO (PRIORITY_MAIN - 1)
#endif
/**