forked from KolibriOS/kolibrios
upload sdk
git-svn-id: svn://kolibrios.org@4349 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
25
contrib/sdk/sources/newlib/reent/getreent.c
Normal file
25
contrib/sdk/sources/newlib/reent/getreent.c
Normal file
@@ -0,0 +1,25 @@
|
||||
/* default reentrant pointer when multithread enabled */
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <string.h>
|
||||
#include <reent.h>
|
||||
#include <kos32sys.h>
|
||||
|
||||
|
||||
void init_reent()
|
||||
{
|
||||
struct _reent *ent;
|
||||
|
||||
ent = user_alloc(sizeof(struct _reent));
|
||||
|
||||
_REENT_INIT_PTR(ent);
|
||||
|
||||
__asm__ __volatile__(
|
||||
"movl %0, %%fs:16"
|
||||
::"r"(ent));
|
||||
__sinit(ent);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user