URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [linuxthreads/] [reent.c] - Rev 9
Compare with Previous | Blame | View Log
/* Define the location of _REENT for the newlib C library */ #include <reent.h> #include "pthread.h" #include "internals.h" struct _reent * __thread_reent() { pthread_descr self = thread_self(); return THREAD_GETMEM (self, p_reentp); } /* Return thread specific resolver state. */ struct __res_state * __res_state() { pthread_descr self = thread_self(); return THREAD_GETMEM (self, p_resp); }