summaryrefslogtreecommitdiff
path: root/accel-pptpd/triton/loader.c
blob: 33d48315201a4eab17cc3c3e061d3dbba5d7f070 (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 <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <pthread.h>

#include "conf_file.h"
#include "triton_p.h"

void md_init(void);
void event_init(void);
void timer_init(void);

struct thread_arg_t
{
	int (*post_init)(void*);
	void *arg;
};

void *thread(struct thread_arg_t *arg)
{
	printf("triton: starting new thread\n");
	#ifdef USE_CORO
	coroutine_init();
	#endif
	md_init();
	event_init();
	timer_init();
	
	arg->post_init(arg->arg);
	
	free(arg);
	
	//conf_file_load(cf_name);
	#ifdef USE_CORO
	schedule();
	#else
	md_run();
	#endif
	
	return NULL;
}

int triton_init(const char *conf_file)
{
	return 0;
}
int triton_run(int (*post_init)(void*),void *arg)
{
	pthread_t thr;
	struct thread_arg_t *thr_arg=malloc(sizeof(*thr_arg));
	thr_arg->post_init=post_init;
	thr_arg->arg=arg;
	return pthread_create(&thr,NULL,(void*(*)(void*))thread,thr_arg);
}