diff --git a/src/bin/init/main.c b/src/bin/init/main.c index aba2168..e6a7246 100755 --- a/src/bin/init/main.c +++ b/src/bin/init/main.c @@ -35,18 +35,14 @@ int main() { int i=0; i = getpid(); - printf("This is my pid: [%i]\n",i); if (getpid() != 1) { printf("Sorry This Program Must Be Started By The Kernel!!!!\n"); exit(1); } printf("Initializing system.\n"); if (!fork()) { - printf("I'm The Child\n"); exec("shell"); while(1); } - printf("I'm The Parent!\n"); - while (1); exit(1); } \ No newline at end of file diff --git a/src/bin/shell/main.c b/src/bin/shell/main.c index 51487e5..fa53cc3 100755 --- a/src/bin/shell/main.c +++ b/src/bin/shell/main.c @@ -47,7 +47,6 @@ unsigned char buffer[256],*tmp; int cPid = 0; tmp = &buffer; - printf("Shell Start\n"); while (1) { printf("\nUbixOS: "); gets(&buffer);