* posix_ipc.cc (ipc_mutex_lock): Revert unneeded call to signal handler.

This commit is contained in:
Corinna Vinschen 2015-02-26 17:19:27 +00:00
parent c6d1382a1a
commit 51a60543f0
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-02-26 Corinna Vinschen <corinna@vinschen.de>
* posix_ipc.cc (ipc_mutex_lock): Revert unneeded call to signal handler.
2015-02-26 Corinna Vinschen <corinna@vinschen.de>
* posix_ipc.cc (ipc_mutex_lock): Add bool parameter to influence if

View File

@ -126,7 +126,6 @@ ipc_mutex_lock (HANDLE mtx, bool eintr)
case WAIT_ABANDONED_0:
return 0;
case WAIT_SIGNALED:
_my_tls.call_signal_handler ();
set_errno (EINTR);
return 1;
default: