Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2002-08-27 13:24:50 +0400
committerCorinna Vinschen <corinna@vinschen.de>2002-08-27 13:24:50 +0400
commit0a642325253949a306fc3e62863f8c188f8b7037 (patch)
treeda1d1f5710b5360355b12d87bdbbe041ccaeac9d /winsup/cygwin/ioctl.cc
parent6d8bd861e2503d0ab3c3cb64016b50700236265b (diff)
* fhandler_socket.cc (fhandler_socket::check_peer_secret_event):
Fix strace message. (fhandler_socket::connect): Remove sigframe. (fhandler_socket::accept): Ditto. (fhandler_socket::getsockname): Ditto. (fhandler_socket::getpeername): Ditto. (fhandler_socket::recvfrom): Ditto. (fhandler_socket::recvmsg): Ditto. (fhandler_socket::sendto): Ditto. (fhandler_socket::sendmsg): Ditto. (fhandler_socket::close): Ditto. (fhandler_socket::ioctl): Ditto. * ioctl.cc (ioctl): Add sigframe. *net.cc (cygwin_sendto): Ditto. (cygwin_recvfrom): Ditto. (cygwin_recvfrom): Ditto. (cygwin_connect): Ditto. (cygwin_shutdown): Ditto. (cygwin_getpeername): Ditto. (cygwin_accept): Ditto. Improve strace message. (cygwin_getsockname): Ditto. Ditto. (cygwin_recvmsg): Ditto. Ditto. (cygwin_sendmsg): Fix strace message.
Diffstat (limited to 'winsup/cygwin/ioctl.cc')
-rw-r--r--winsup/cygwin/ioctl.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/ioctl.cc b/winsup/cygwin/ioctl.cc
index 2f96e8508..6b12a2ec3 100644
--- a/winsup/cygwin/ioctl.cc
+++ b/winsup/cygwin/ioctl.cc
@@ -20,11 +20,14 @@ details. */
#include "path.h"
#include "dtable.h"
#include "cygheap.h"
+#include "sigproc.h"
#include <sys/termios.h>
extern "C" int
ioctl (int fd, int cmd, ...)
{
+ sigframe thisframe (mainthread);
+
cygheap_fdget cfd (fd);
if (cfd < 0)
return -1;