* cygheap.h (init_cygheap): New struct holding values that live in the Cygwin
heap. * child_info.h (child_info): Change pointer type of cygheap to init_cygheap. * cygheap.cc (init_cheap): Point cygheap_max after contents of cygheap. Move some stuff into cygheap.h. * dir.cc (opendir): Change to use root and rootlen in cygheap rather than in myself. (mkdir): Change to use umask in cygheap rather than in myself. * path.cc: Ditto, throughout. * syscalls.cc (_open): Ditto. Change to use umask in cygheap rather than in myself. (chroot): Change to allocate root dir on the cygwin heap. (umask): Change to use umask in cygheap rather than in myself. (cygwin_bind): Ditto. * sigproc.cc (proc_subproc): Don't copy umask or root stuff as this happens automatically now. * pinfo.h (_pinfo): Migrate stuff out of here and into init_cheap. * dcrt0.cc (dll_crt0_1): Call cygheap_init later in startup for first cygwin process.
This commit is contained in:
@ -263,7 +263,6 @@ proc_subproc (DWORD what, DWORD val)
|
||||
vchild->pgid = myself->pgid;
|
||||
vchild->sid = myself->sid;
|
||||
vchild->ctty = myself->ctty;
|
||||
vchild->umask = myself->umask;
|
||||
vchild->orig_uid = myself->orig_uid;
|
||||
vchild->orig_gid = myself->orig_gid;
|
||||
vchild->real_uid = myself->real_uid;
|
||||
@ -276,9 +275,7 @@ proc_subproc (DWORD what, DWORD val)
|
||||
}
|
||||
memcpy (vchild->logsrv, myself->logsrv, MAX_HOST_NAME);
|
||||
memcpy (vchild->domain, myself->domain, MAX_COMPUTERNAME_LENGTH+1);
|
||||
memcpy (vchild->root, myself->root, MAX_PATH+1);
|
||||
vchild->token = myself->token;
|
||||
vchild->rootlen = myself->rootlen;
|
||||
vchild->process_state |= PID_INITIALIZING | (myself->process_state & PID_USETTY);
|
||||
|
||||
sigproc_printf ("added pid %d to wait list, slot %d, winpid %p, handle %p",
|
||||
|
Reference in New Issue
Block a user