sched: use shorter data type for timeout IDs

This commit is contained in:
Miroslav Lichvar 2015-11-05 13:14:57 +01:00
parent 8803ab27c6
commit 66d534417b

View file

@ -30,7 +30,7 @@
#include "sysincl.h"
/* Type for timeout IDs, valid IDs are always greater than zero */
typedef unsigned long SCH_TimeoutID;
typedef unsigned int SCH_TimeoutID;
typedef enum {
SCH_ReservedTimeoutValue = 0,