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 (); }