corrected comment

This commit is contained in:
nifi 2007-04-04 09:19:18 +00:00
parent 6910c4d311
commit 0abdde6197
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: process.c,v 1.4 2007/03/25 17:18:37 adamdunkels Exp $ * @(#)$Id: process.c,v 1.5 2007/04/04 09:19:18 nifi Exp $
*/ */
/** /**
@ -119,7 +119,7 @@ process_start(struct process *p, char *arg)
PT_INIT(&p->pt); PT_INIT(&p->pt);
/* Post a synchronous event to the process. */ /* Post an asynchronous event to the process. */
process_post(p, PROCESS_EVENT_INIT, (process_data_t)arg); process_post(p, PROCESS_EVENT_INIT, (process_data_t)arg);
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/