* init.cc (dll_entry): Use better check for determining when to set thread

specific stuff.
* syscalls.cc (_unlink): Continue with chmod'ing file even if DELETE_ON_CLOSE
succeeds, if file still exists.
This commit is contained in:
Christopher Faylor
2000-04-16 22:57:05 +00:00
parent 11f5b06579
commit fbf23e34c5
3 changed files with 13 additions and 3 deletions

View File

@@ -91,8 +91,11 @@ _unlink (const char *ourname)
{
CloseHandle (h);
syscall_printf ("CreateFile/CloseHandle succeeded");
res = 0;
break;
if (i > 0 || GetFileAttributes (win32_name) == (DWORD) -1)
{
res = 0;
break;
}
}
if (i > 0)