diff options
author | Christopher Faylor <me@cgf.cx> | 2000-09-08 03:12:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-09-08 03:12:13 +0000 |
commit | 3b0d65eab953cb982db4015125d45e6b2ae32857 (patch) | |
tree | 0ff3cdf06c2e132690a7d7946617017342347a60 /winsup/cygwin/select.cc | |
parent | f0338f545d769143f542338b4d61f771b5a87f93 (diff) | |
download | cygnal-3b0d65eab953cb982db4015125d45e6b2ae32857.tar.gz cygnal-3b0d65eab953cb982db4015125d45e6b2ae32857.tar.bz2 cygnal-3b0d65eab953cb982db4015125d45e6b2ae32857.zip |
* sigproc.h (sigframe::set): Eliminate second argument. Default bp to current
frame pointer rather than using this within the function, which is unstable
when this method is not inlined.
* net.cc: Eliminate use of second argument to sigframe.set throughout.
* select.cc (cygwin_select): Ditto.
* sigproc.cc (sig_send): Ditto.
Diffstat (limited to 'winsup/cygwin/select.cc')
-rw-r--r-- | winsup/cygwin/select.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index b52471a0e..bcaf4a467 100644 --- a/winsup/cygwin/select.cc +++ b/winsup/cygwin/select.cc @@ -119,7 +119,7 @@ cygwin_select (int maxfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, fd_set *dummy_readfds = allocfd_set (maxfds); fd_set *dummy_writefds = allocfd_set (maxfds); fd_set *dummy_exceptfds = allocfd_set (maxfds); - sigframe thisframe (mainthread, 0); + sigframe thisframe (mainthread); #if 0 if (n > FD_SETSIZE) |