* 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>
|
Wed Jul 5 18:56:58 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* dcrt0.cc (__cygwin_user_data): Initialize.
|
* dcrt0.cc (__cygwin_user_data): Initialize.
|
||||||
|
@ -116,8 +116,13 @@ struct per_process
|
|||||||
add an item. */
|
add an item. */
|
||||||
DWORD unused2[5];
|
DWORD unused2[5];
|
||||||
|
|
||||||
|
#ifdef __INSIDE_CYGWIN__
|
||||||
ResourceLocks *resourcelocks;
|
ResourceLocks *resourcelocks;
|
||||||
MTinterface *threadinterface;
|
MTinterface *threadinterface;
|
||||||
|
#else
|
||||||
|
void *resourcelocks;
|
||||||
|
void *threadinterface;
|
||||||
|
#endif
|
||||||
struct _reent *impure_ptr;
|
struct _reent *impure_ptr;
|
||||||
};
|
};
|
||||||
#define per_process_overwrite ((unsigned) &(((struct per_process *) NULL)->resourcelocks))
|
#define per_process_overwrite ((unsigned) &(((struct per_process *) NULL)->resourcelocks))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user