metal-cos/tests/spawnmultipletest.c

29 lines
498 B
C
Raw Normal View History

2023-09-02 22:42:00 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
// Castor Only
#include <syscall.h>
int
main(int argc, const char *argv[])
{
int status[10];
2023-09-03 18:55:51 +00:00
printf("Spawn parallel test wait any: ");
2023-09-02 22:42:00 +00:00
for (int i = 0; i < 10; i++) {
status[i] = OSSpawn("/bin/echo", &argv[0]);
2023-09-03 18:55:51 +00:00
printf("spawn: %lx\n", status[i]);
2023-09-02 22:42:00 +00:00
}
for (int i = 0; i < 10; i++) {
2023-10-02 22:16:15 +00:00
status[i] = OSWait(status[i]);
2023-09-03 18:55:51 +00:00
printf("wait: %lx\n", status[i]);
2023-09-02 22:42:00 +00:00
}
printf("Success!\n");
return 0;
}