Location:
reent.h
IMPORT_C void _reclaim_reent(struct _reent *);
The struct _reent
is managed on a per-thread basis by EPOC32, so there is no global variable _impure_pointer and everyone has to use _REENT
(panics in the event of an error) or REENT2 (which returns a NULL pointer in the event of an error).
|