Allow to optionally (triggered with SELFSTART_PROCESS) self start the application.

This commit is contained in:
oliverschmidt 2008-02-07 16:28:11 +00:00
parent 155a27ff59
commit 0a8f384a40
13 changed files with 64 additions and 12 deletions

View file

@ -29,7 +29,7 @@
*
* This file is part of the Contiki desktop environment
*
* $Id: process-list.c,v 1.6 2007/09/30 02:32:23 matsutsuka Exp $
* $Id: process-list.c,v 1.7 2008/02/07 16:30:58 oliverschmidt Exp $
*
*/
@ -65,6 +65,10 @@ static struct ctk_button processclosebutton =
PROCESS(processes_process, "Process listing");
#if SELFSTART_PROCESS
AUTOSTART_PROCESSES(&processes_process);
#endif /* SELFSTART_PROCESS */
enum {
EVENT_UPDATE
};