Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3151 → Rev 3152

/branches/dynload/uspace/app/init/init.c
129,6 → 129,7
spawn("/sbin/fat");
spawn("/sbin/tetris");
spawn("/sbin/cli");
// FIXME: spawn("/sbin/tester");
// FIXME: spawn("/sbin/klog");
/branches/dynload/uspace/app/cli/cli.c
72,7 → 72,6
int main(int argc, char *argv[])
{
printf("This is CLI\n");
return 0;
 
while (1) {
read_line(line_buffer, LINE_BUFFER_SIZE);
81,7 → 80,7
break;
printf("spawn task\n");
if (line_buffer[0] != '\0')
task_spawn(line_buffer, NULL);
task_spawn_ex(line_buffer, NULL);
}
 
printf("Bye\n");