Subversion Repositories HelenOS

Rev

Rev 3174 | Rev 3403 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3174 Rev 3190
Line 87... Line 87...
87
    printf(NAME ": Spawning %s\n", fname);
87
    printf(NAME ": Spawning %s\n", fname);
88
 
88
 
89
    argv[0] = fname;
89
    argv[0] = fname;
90
    argv[1] = NULL;
90
    argv[1] = NULL;
91
 
91
 
92
    if (task_spawn_ex(fname, argv) != 0) {
92
    if (task_spawn(fname, argv) != 0) {
93
        /* Success */
93
        /* Success */
94
        sleep(1);
94
        sleep(1);
95
    }
95
    }
96
}
96
}
97
 
97