mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
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.
12 lines
178 B
C
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");
|
|
}
|