toaruos/userspace/multitasking-test.c

50 lines
789 B
C
Raw Normal View History

2012-01-11 05:14:30 +04:00
/* vim: tabstop=4 noexpandtab shiftwidth=4
*
* Multitasking Thrasher
*
*/
#include <stdio.h>
#include <stdint.h>
#include <syscall.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char ** argv) {
int nthreads = 2, base_pid = getpid(), npid = -1;
if (argc > 1) {
/* Read some arguments */
int c;
while ((c = getopt(argc, argv, "n:")) != -1) {
switch (c) {
case 'n':
nthreads = atoi(optarg);
break;
default:
break;
}
}
}
printf("I am pid %d\n", base_pid);
printf("Starting %d threads.\n", nthreads);
for (int i = 0; i < nthreads; ++i) {
int pid = fork();
if (!pid) {
while (1) {
2012-01-11 06:14:07 +04:00
printf("%c", i + 'A');
fflush(stdout);
2012-01-11 05:14:30 +04:00
}
} else {
npid = pid;
}
}
printf("Done.\n");
return 0;
}