Changeset 1757ffce in mainline
- Timestamp:
- 2009-07-06T21:16:51Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8a81a73a
- Parents:
- 95bc57c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
r95bc57c r1757ffce 42 42 #include <errno.h> 43 43 #include <fcntl.h> 44 #include <sys/stat.h> 44 45 #include <task.h> 45 46 #include <malloc.h> … … 127 128 { 128 129 char *argv[2]; 130 struct stat s; 131 132 if (stat(fname, &s) == ENOENT) 133 return; 129 134 130 135 printf(NAME ": Spawning %s\n", fname); … … 143 148 task_exit_t texit; 144 149 int rc, retval; 150 struct stat s; 151 152 if (stat(fname, &s) == ENOENT) 153 return; 145 154 146 155 printf(NAME ": Starting %s\n", fname);
Note:
See TracChangeset
for help on using the changeset viewer.