Adjusted to renaming of TCB in NuttX

This commit is contained in:
Lorenz Meier
2013-06-01 12:00:33 +02:00
parent 4db739b5e1
commit 63d460160c
5 changed files with 36 additions and 38 deletions
+2 -2
View File
@@ -50,7 +50,7 @@
#include "systemlib.h"
static void kill_task(FAR _TCB *tcb, FAR void *arg);
static void kill_task(FAR struct tcb_s *tcb, FAR void *arg);
void killall()
{
@@ -60,7 +60,7 @@ void killall()
sched_foreach(kill_task, NULL);
}
static void kill_task(FAR _TCB *tcb, FAR void *arg)
static void kill_task(FAR struct tcb_s *tcb, FAR void *arg)
{
kill(tcb->pid, SIGUSR1);
}