2010-11-07 14:42:29 +01:00
|
|
|
/* default reentrant pointer when multithread enabled */
|
|
|
|
|
|
|
|
#include <_ansi.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <reent.h>
|
2013-07-10 21:26:24 +02:00
|
|
|
#include <kos32sys.h>
|
2010-11-07 14:42:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
void init_reent()
|
|
|
|
{
|
|
|
|
struct _reent *ent;
|
|
|
|
|
|
|
|
ent = user_alloc(sizeof(struct _reent));
|
|
|
|
|
|
|
|
_REENT_INIT_PTR(ent);
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
2013-07-10 21:26:24 +02:00
|
|
|
"movl %0, %%fs:16"
|
2010-11-07 14:42:29 +01:00
|
|
|
::"r"(ent));
|
|
|
|
__sinit(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|