| 19 | SystemService systemService; |
| 20 | |
| 21 | int syscall_0(int first, int second, int third, int forth, int fifth) |
| 22 | { |
| 23 | printf("systerm call 0: %d, %d, %d, %d, %d\n", |
| 24 | first, second, third, forth, fifth); |
| 25 | return first + second + third + forth + fifth; |
| 26 | } |
| 27 | |
| 28 | void first_thread(void *arg) |
| 29 | { |