1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

Merge pull request #368 from mehlis/findings

(non critical) findings
This commit is contained in:
Oleg Hahm 2013-11-22 18:52:13 -08:00
commit 7c979751e5
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@
/* uneven means has to be on runqueue */
#define STATUS_NOT_FOUND (0x0000)
#define STATUS_ON_RUNQUEUE (0x0001)
#define STATUS_RUNNING (0x0002) + STATUS_ON_RUNQUEUE
#define STATUS_PENDING (0x0004) + STATUS_ON_RUNQUEUE
#define STATUS_RUNNING (0x0002 + STATUS_ON_RUNQUEUE)
#define STATUS_PENDING (0x0004 + STATUS_ON_RUNQUEUE)
#define STATUS_STOPPED (0x0008)
#define STATUS_SLEEPING (0x0010)
#define STATUS_MUTEX_BLOCKED (0x0020)

View File

@ -304,7 +304,7 @@ void vtimer_print(vtimer_t *t)
{
printf("Seconds: %"PRIu32" - Microseconds: %"PRIu32"\n \
action: %p\n \
action: %p\n \
arg: %p\n \
pid: %u\n",
t->absolute.seconds, t->absolute.microseconds,
t->action,