diff options
author | Christopher Faylor <me@cgf.cx> | 2005-01-26 00:15:11 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-01-26 00:15:11 +0000 |
commit | 0e32d1ffcda1234552dec05f0ceb631521959870 (patch) | |
tree | f7b748ae9cd18ffad77e99c9fa2b4921bb0e3048 /winsup/cygwin/shared.cc | |
parent | 72c1491bba149c8fbd9eb81a0a529aa8bad47bb5 (diff) | |
download | cygnal-0e32d1ffcda1234552dec05f0ceb631521959870.tar.gz cygnal-0e32d1ffcda1234552dec05f0ceb631521959870.tar.bz2 cygnal-0e32d1ffcda1234552dec05f0ceb631521959870.zip |
* pinfo.h (pinfo::init): Make third parameter non-optional and propagate change
throughout.
* pinfo.cc (set_myself): Pass INVALID_HANDLE_POINTER if h is NULL.
(pinfo::init): Make third parameter non-optional. Eliminate use of PID_EXECED
as an argument. Put setting of handle back inside loop but reorganize to try
to open it only when necessary.
Diffstat (limited to 'winsup/cygwin/shared.cc')
-rw-r--r-- | winsup/cygwin/shared.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/shared.cc b/winsup/cygwin/shared.cc index 5cc843683..18e200efd 100644 --- a/winsup/cygwin/shared.cc +++ b/winsup/cygwin/shared.cc @@ -73,7 +73,7 @@ static char *offsets[] = }; void * __stdcall -open_shared (const char *name, int n, HANDLE &shared_h, DWORD size, +open_shared (const char *name, int n, HANDLE& shared_h, DWORD size, shared_locations m, PSECURITY_ATTRIBUTES psa) { void *shared; |