mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
* include/sys/cygwin.h: Hide internal data types in per_process
when not __INSIDE_CYGWIN__.
This commit is contained in:
parent
f7bbb29948
commit
52cec10c67
@ -1,3 +1,8 @@
|
||||
Fri Jul 7 10:31:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/sys/cygwin.h: Hide internal data types in per_process
|
||||
when not __INSIDE_CYGWIN__.
|
||||
|
||||
Wed Jul 5 18:56:58 2000 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* dcrt0.cc (__cygwin_user_data): Initialize.
|
||||
|
@ -116,8 +116,13 @@ struct per_process
|
||||
add an item. */
|
||||
DWORD unused2[5];
|
||||
|
||||
#ifdef __INSIDE_CYGWIN__
|
||||
ResourceLocks *resourcelocks;
|
||||
MTinterface *threadinterface;
|
||||
#else
|
||||
void *resourcelocks;
|
||||
void *threadinterface;
|
||||
#endif
|
||||
struct _reent *impure_ptr;
|
||||
};
|
||||
#define per_process_overwrite ((unsigned) &(((struct per_process *) NULL)->resourcelocks))
|
||||
|
Loading…
x
Reference in New Issue
Block a user