Files
codezero/conts/libl4thread/src/thread.c
Bora Sahin ede050ad37 utcb handling helper routines for the thread library.
This is one of the steps we need in the process of providing a similar interface
for thread creation which can be found in the mainstream operating systems like
Linux.
2009-11-05 12:39:29 +02:00

12 lines
178 B
C

/*
*
*/
#include <stdio.h>
extern void utcb_test(unsigned long utcb_start, unsigned long utcb_end);
void l4thread_print(void)
{
printf("Hello world from libl4thread!\n");
}