forked from KolibriOS/kolibrios
a3c61f5039
git-svn-id: svn://kolibrios.org@6664 a494cfbc-eb01-0410-851d-a64ba20cac60
23 lines
427 B
C
23 lines
427 B
C
/* default reentrant pointer when multithread enabled */
|
|
|
|
#include <_ansi.h>
|
|
#include <string.h>
|
|
#include <sys/reent.h>
|
|
#include <kos32sys.h>
|
|
|
|
extern _VOID _EXFUN(__sinit,(struct _reent *));
|
|
|
|
void init_reent()
|
|
{
|
|
struct _reent *ent;
|
|
|
|
ent = user_alloc(sizeof(struct _reent));
|
|
|
|
_REENT_INIT_PTR_ZEROED(ent);
|
|
|
|
__asm__ __volatile__(
|
|
"movl %0, %%fs:16"
|
|
::"r"(ent));
|
|
__sinit(ent);
|
|
}
|