summaryrefslogtreecommitdiff
path: root/src/modules/test/main.c
blob: 493867e217b2898f7608962fabfe08ecbe5eebf5 (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
#include <gc/syscall.h>
#include <gc/mem.h>
#include <gc/server.h>
#include <gm/method.h>
#include <gm/call.h>
#include <gm/call/manager.h>
#include <stdlib.h>

#define FACTOR 4

struct method_ret nulhandle(struct method_data *d) {
	if (d->blocking) c_logSvc("Handling a nothing request.", LL_STATUS);
	else c_logSvc("Handling a nothing message.", LL_STATUS);
	return mr_void();
}

struct method_ret openhandle(struct method_data *d) {
	CHKSSTR(d, 0);
	printk("test.open: "); printk(d->parameters[0].p); printk("\n");
	return mr_err(-1);
}

void thread2(void* d) {
	Server *s = srv_get(0);
	srv_addHandler(s, M_NOTHING_VVVV, nulhandle);
	srv_addHandler(s, M_OPEN_OMVV, openhandle);
	while (1) {
		c_logSvc("{2} Waiting for a request on main object...", LL_STATUS);
		srv_handle(s, HA_WAIT);
	}
}

void thread_cascade(void* d) {
	c_logSvc("{#} Thread cascade element started. Continuing.", LL_STATUS);
	thread_new(thread_cascade, (void*)((int)d - 1));
	c_logSvc("{#} Thread cascade element finished.", LL_STATUS);
}

int main() {
	c_logSvc("Hi world from unregistered test module !", LL_NOTICE);
	c_registerSvc("test");
	c_logSvc("Creating new thread...", LL_STATUS);
	thread_new(thread2, 0);
	c_logSvc("{1} Sending a test message to manager", LL_STATUS);
	c_nothing(1, 0);

	c_logSvc("{1} Creating thread cascade len:3", LL_STATUS);
	thread_new(thread_cascade, (void*)3);

	c_logSvc("{1} Thread now sleeping...", LL_WARNING);
	while (1) thread_sleep(1000);
	return 0;
}