summaryrefslogtreecommitdiff
path: root/libddekit/init.c
blob: 9708ba1da9dbb26c0a4cc190dcf793a299eaf35b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * 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 ();
	ddekit_init_threads();
	linux_kmem_init ();
}