Get rid of unnecessary barrier. Improve comment.
[pintos-anon] / grading / userprog / exec-multiple.c
1 #include <stdio.h>
2 #include <syscall.h>
3
4 int
5 main (void) 
6 {
7   printf ("(exec-multiple) begin\n");
8   wait (exec ("child-simple"));
9   wait (exec ("child-simple"));
10   wait (exec ("child-simple"));
11   wait (exec ("child-simple"));
12   printf ("(exec-multiple) end\n");
13   return 0;
14 }