Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3154 → Rev 3155

/branches/dynload/uspace/app/init/init.c
83,6 → 83,12
static void spawn(char *fname)
{
printf(NAME ": Spawning %s\n", fname);
 
if (task_spawn_ex(fname, NULL) != 0) {
/* Success */
sleep(1);
}
return;
int fd = open(fname, O_RDONLY);
if (fd >= 0) {