summaryrefslogtreecommitdiff
path: root/libddekit/init.c
blob: 6bc9d8ffe0ab4d0f89c99c4af21ad112a9b10ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * The functions regarding DDE/BSD initialization are found here.
 *
 * \author Thomas Friebel <tf13@os.inf.tu-dresden.de>
 */
#include "ddekit/thread.h"

void ddekit_init(void)
{
	extern void linux_kmem_init ();
	extern int log_init ();
	ddekit_init_threads();
	linux_kmem_init ();
	log_init ();
}