diff options
author | Christopher Faylor <me@cgf.cx> | 2007-07-10 01:21:03 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2007-07-10 01:21:03 +0000 |
commit | be1cabba238ce5af7a11a852d9d528aa2f102c42 (patch) | |
tree | 4514435a77e144839602bba4ad8a9d8f7e4afaa7 /winsup/cygwin/fhandler.h | |
parent | 99b08560990feec1f9584861b7345d90c0c5881a (diff) | |
download | cygnal-be1cabba238ce5af7a11a852d9d528aa2f102c42.tar.gz cygnal-be1cabba238ce5af7a11a852d9d528aa2f102c42.tar.bz2 cygnal-be1cabba238ce5af7a11a852d9d528aa2f102c42.zip |
* debug.cc (close_handle): Change debug output format slightly.
* dlfcn.cc (dlclose): Don't close handle returned from GetModuleHandle(NULL).
* fhandler.h (fhandler_pipe::create): Remove obsolete argument.
(fhandler_pipe::create): Ditto.
* fhandler.cc (fhandler_pipe::create): Ditto.
(fhandler_pipe::create): Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index 996f361cc..07b26607e 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -546,8 +546,8 @@ public: int __stdcall fadvise (_off64_t, _off64_t, int) __attribute__ ((regparm (3))); int __stdcall ftruncate (_off64_t, bool) __attribute__ ((regparm (3))); int ready_for_read (int fd, DWORD howlong); - static int create (fhandler_pipe *[2], unsigned, int, bool = false); - static int create_selectable (LPSECURITY_ATTRIBUTES, HANDLE&, HANDLE&, DWORD, bool); + static int create (fhandler_pipe *[2], unsigned, int); + static int create_selectable (LPSECURITY_ATTRIBUTES, HANDLE&, HANDLE&, DWORD); }; enum fifo_state |