kolibrios/contrib/sdk/sources/newlib/libc/reent/getreent.c
turbocat 6c347146ee newlib: Try to unify wrappers. And get rid of kos32sys.h
git-svn-id: svn://kolibrios.org@9874 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-09-01 19:19:27 +00:00

23 lines
428 B
C

/* default reentrant pointer when multithread enabled */
#include <_ansi.h>
#include <string.h>
#include <sys/reent.h>
#include <sys/ksys.h>
extern _VOID _EXFUN(__sinit,(struct _reent *));
void init_reent()
{
struct _reent *ent;
ent = _ksys_alloc(sizeof(struct _reent));
_REENT_INIT_PTR_ZEROED(ent);
__asm__ __volatile__(
"movl %0, %%fs:16"
::"r"(ent));
__sinit(ent);
}