mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 19:10:36 +08:00
* bsd_mutex.cc (_msleep): Disable resetting event object for now.
This commit is contained in:
parent
b2e7654908
commit
ab21f18c95
@ -1,3 +1,7 @@
|
|||||||
|
2004-09-06 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* bsd_mutex.cc (_msleep): Disable resetting event object for now.
|
||||||
|
|
||||||
2004-08-31 Corinna Vinschen <corinna@vinschen.de>
|
2004-08-31 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* sysv_shm.cc (kern_shmat): Add debug_printf's.
|
* sysv_shm.cc (kern_shmat): Add debug_printf's.
|
||||||
|
@ -223,8 +223,15 @@ _msleep (void *ident, struct mtx *mtx, int priority,
|
|||||||
panic ("wait in msleep (%s) failed, %E", wmesg);
|
panic ("wait in msleep (%s) failed, %E", wmesg);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
/* Dismiss event before entering mutex. */
|
/* Dismiss event before entering mutex. */
|
||||||
|
/* CV 2004-09-06, Don't dismiss for now.
|
||||||
|
TODO: Dismissing was meant to solve a problem with heavy load but
|
||||||
|
there's no proof that it helps. On the contrary, it breaks msgtest
|
||||||
|
in the testsuite. As long as I don't get a testcase to track that
|
||||||
|
down, I'll keep it that way. */
|
||||||
ResetEvent (evt);
|
ResetEvent (evt);
|
||||||
|
#endif
|
||||||
CloseHandle (evt);
|
CloseHandle (evt);
|
||||||
td->client->hold ();
|
td->client->hold ();
|
||||||
set_priority (old_priority);
|
set_priority (old_priority);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user