* shared.cc (open_shared): Drop useless attempt from 2006-08-11.
This commit is contained in:
parent
17f3068d4e
commit
fa9e684236
@ -1,3 +1,7 @@
|
|||||||
|
2006-10-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* shared.cc (open_shared): Drop useless attempt from 2006-08-11.
|
||||||
|
|
||||||
2006-10-27 Corinna Vinschen <corinna@vinschen.de>
|
2006-10-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* dcrt0.cc (__api_fatal): Drop spare argument to __small_sprintf.
|
* dcrt0.cc (__api_fatal): Drop spare argument to __small_sprintf.
|
||||||
|
@ -93,30 +93,6 @@ open_shared (const char *name, int n, HANDLE& shared_h, DWORD size,
|
|||||||
{
|
{
|
||||||
shared_h = CreateFileMapping (INVALID_HANDLE_VALUE, psa, PAGE_READWRITE,
|
shared_h = CreateFileMapping (INVALID_HANDLE_VALUE, psa, PAGE_READWRITE,
|
||||||
0, size, mapname);
|
0, size, mapname);
|
||||||
#ifdef DEBUGGING
|
|
||||||
if (!shared_h && GetLastError () == NO_ERROR)
|
|
||||||
{
|
|
||||||
system_printf ("CreateFileMapping %s, %E. Retry Open", mapname);
|
|
||||||
shared_h = OpenFileMapping (access, FALSE, mapname);
|
|
||||||
if (!shared_h)
|
|
||||||
{
|
|
||||||
system_printf ("OpenFileMapping %s, %E. Retry Create "
|
|
||||||
"after sleep (check timing problem)", mapname);
|
|
||||||
Sleep (1000L);
|
|
||||||
shared_h = CreateFileMapping (INVALID_HANDLE_VALUE, psa,
|
|
||||||
PAGE_READWRITE, 0, size,
|
|
||||||
mapname);
|
|
||||||
if (!shared_h)
|
|
||||||
system_printf ("Retried CreateFileMapping %s, %E.",
|
|
||||||
mapname);
|
|
||||||
else
|
|
||||||
system_printf ("Retried CreateFileMapping %s succeeded!",
|
|
||||||
mapname);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
system_printf ("OpenFileMapping %s succeeded!", mapname);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (GetLastError () == ERROR_ALREADY_EXISTS)
|
if (GetLastError () == ERROR_ALREADY_EXISTS)
|
||||||
m = SH_JUSTOPEN;
|
m = SH_JUSTOPEN;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user