summaryrefslogtreecommitdiff
path: root/src/user/app/tests/kernel/threads.c
blob: cb7111dcd1517a81f0339219ee338dee69f38961 (plain)
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
#include "../tests.h"
#include <camellia/flags.h>
#include <camellia/syscalls.h>
#include <string.h>
#include <user/lib/esemaphore.h>
#include <user/lib/thread.h>

int global_n;
static void basic_thread(void *sem) {
	global_n = 10;
	esem_signal(sem);
}
static void test_basic_thread(void) {
	struct evil_sem *sem = esem_new(0);
	global_n = 0;
	thread_create(FORK_NOREAP, basic_thread, sem);
	esem_wait(sem);
	test(global_n == 10);
}

handle_t global_h;
static void shared_handle(void *sem) {
	handle_t ends[2];
	test(_syscall_pipe(ends, 0) >= 0);
	global_h = ends[0];
	esem_signal(sem);
	_syscall_write(ends[1], "Hello!", 7, -1, 0);
}
static void test_shared_handle(void) {
	struct evil_sem *sem = esem_new(0);
	char buf[16];
	global_h = -1;
	thread_create(FORK_NOREAP, shared_handle, sem);
	esem_wait(sem);

	test(global_h >= 0);
	test(_syscall_read(global_h, buf, sizeof buf, 0) == 7);
	test(!strcmp("Hello!", buf));
}

static void many_thread(void *arg) {
	*(uint64_t*)arg += 10;
}
static void test_many_threads(void) {
	uint64_t n = 0;
	for (int i = 0; i < 10; i++) thread_create(0, many_thread, &n);
	for (int i = 0; i < 10; i++) _syscall_await();
	test(n == 100);
}

void r_k_threads(void) {
	run_test(test_basic_thread);
	run_test(test_shared_handle);
	run_test(test_many_threads);
}