0e84a0ec6e
give cpu1 a TSS and gdt for when it enters scheduler() and a pseudo proc[] entry for each cpu cpu0 waits for each other cpu to start up read() for files
14 lines
157 B
C
14 lines
157 B
C
#include "user.h"
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
int i;
|
|
|
|
for(i = 1; i < argc; i++){
|
|
puts(argv[i]);
|
|
puts(" ");
|
|
}
|
|
puts("\n");
|
|
exit();
|
|
}
|