forked from KolibriOS/kolibrios
754f9336f0
git-svn-id: svn://kolibrios.org@4349 a494cfbc-eb01-0410-851d-a64ba20cac60
23 lines
572 B
C
23 lines
572 B
C
#include <newlib.h>
|
|
|
|
void init_reent();
|
|
|
|
void __attribute__((noreturn))
|
|
__thread_startup (int (*entry)(void*), void *param,
|
|
void *stacklow, void *stackhigh)
|
|
{
|
|
int retval;
|
|
|
|
__asm__ __volatile__( // save stack limits
|
|
"movl %0, %%fs:8 \n\t" // use TLS
|
|
"movl %1, %%fs:12 \n\t"
|
|
::"r"(stacklow), "r"(stackhigh));
|
|
|
|
init_reent(); // initialize thread reentry structure
|
|
|
|
retval = entry(param); // call user thread function
|
|
|
|
_exit(retval);
|
|
};
|
|
|