* pinfo.cc (pinfo::init): Use INVALID_HANDLE_VALUE instead of
explicit cast (HANDLE) 0xffffffff. * shared.cc (open_shared): Ditto.
This commit is contained in:
parent
82ea92f3ea
commit
9928a7e108
|
@ -1,3 +1,9 @@
|
|||
Tue Jan 30 8:55:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* pinfo.cc (pinfo::init): Use INVALID_HANDLE_VALUE instead of
|
||||
explicit cast (HANDLE) 0xffffffff.
|
||||
* shared.cc (open_shared): Ditto.
|
||||
|
||||
Mon Jan 29 17:15:22 2001 Bill Hegardt <bill@troyxcd.com>
|
||||
|
||||
* fhandler_serial.cc (raw_write): Use local copy of OVERLAPPED
|
||||
|
|
|
@ -166,8 +166,8 @@ pinfo::init (pid_t n, DWORD flag, HANDLE in_h)
|
|||
}
|
||||
else
|
||||
{
|
||||
h = CreateFileMapping ((HANDLE) 0xffffffff, &sec_all_nih,
|
||||
PAGE_READWRITE, 0, mapsize, mapname);
|
||||
h = CreateFileMapping (INVALID_HANDLE_VALUE, &sec_all_nih,
|
||||
PAGE_READWRITE, 0, mapsize, mapname);
|
||||
created = h && GetLastError () != ERROR_ALREADY_EXISTS;
|
||||
}
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ open_shared (const char *name, HANDLE &shared_h, DWORD size, void *addr)
|
|||
TRUE, mapname);
|
||||
}
|
||||
if (!shared_h &&
|
||||
!(shared_h = CreateFileMappingA ((HANDLE) 0xffffffff,
|
||||
!(shared_h = CreateFileMappingA (INVALID_HANDLE_VALUE,
|
||||
&sec_all,
|
||||
PAGE_READWRITE,
|
||||
0,
|
||||
|
|
Loading…
Reference in New Issue