summaryrefslogtreecommitdiff
path: root/src/user/app/test/main.c
blob: 2c42cf8e918d0210c27a4ab372e142fdb8f6c384 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <tce/syscall.h>
#include <stdio.h>
#include <stdlib.h>

int threads = 1;

void thread_cascade(void* d) {
	int n = (int)d;

	char *v = malloc(2048);
	if (!v) printk("!");

	if (d == 0) {
		//printk("{#} 0 cascade element started => end\n");
		printk("*");
	} else {
		if (n < 0) {
			//printk("{#} - cascade element started\n");
			printk("-");
			n = 0 - n;
		} else {
			//printk("{#} + cascade element started\n");
			printk("+");
		}
		//printk("{#} FORK + ...\n");
		printk(">");
		threads += 2;
		thread_new(thread_cascade, (void*)(n - 1));
		//printk("{#} FORK - ...\n");
		printk("<");
		thread_new(thread_cascade, (void*)(1 - n));
		//printk("{#} Thread cascade element finished.\n");
		printk(".");
	}

	free(v);

	threads--;
}

void useless_thread(void* d) {
	while(1) {
		printk("~");
		schedule();
	}
}

int main(int argc, char** args) {
	char**a;
	if (args != 0) {
		printk("(test) args");
		for (a = args; *a != 0; a++) {
			printk(" - ");
			printk(*a);
		}
		printk("\n");
	}

	printk("(test) Creating thread cascade (total 2**6 = 64 threads)\n");
	thread_new(useless_thread, 0);
	thread_new(thread_cascade, (void*)6);

	while (1) {
		schedule();
		if (threads == 0) break;
	}
	printk("\n(test) Test process exiting. Press the super key to go to the home terminal.\n");

	printf("(test) End.\n");

	return 0;
}