diff options
author | Christopher Faylor <me@cgf.cx> | 2000-10-12 04:38:29 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-10-12 04:38:29 +0000 |
commit | ec300c997904f1db79cd5ca49f798ae08a3eedba (patch) | |
tree | f0573247cacbf2efd21dd594bf3838c036035d4c /winsup/cygwin/fhandler.h | |
parent | 8251f53ddda33e780b8043665e638a558e0ef719 (diff) | |
download | cygnal-ec300c997904f1db79cd5ca49f798ae08a3eedba.tar.gz cygnal-ec300c997904f1db79cd5ca49f798ae08a3eedba.tar.bz2 cygnal-ec300c997904f1db79cd5ca49f798ae08a3eedba.zip |
* errno.cc (seterrno_from_win_error): Fix debugging output.
* fhandler.cc (fhandler_base::fstat): Move to inline method in fhandler.h.
(fhandler_base::set_io_handle): Ditto.
* fhandler.h (fhandler_base): Make some methods inline.
* fhandler_console.cc (fhandler_console::write_normal): Make buffer larger.
* sigproc.h (sigframe::sigframe): Actually use set ebp parameter correctly.
* spawn.cc (spawn_guts): Set dwProcessId when exec'ing. Just exit immediately
after reparenting.
* syscalls.cc: Sprinkle sigframe stuff throughout.
* wait.cc (wait4): Set signal frame here.
* dcrt0.cc (__api_fatal): Don't rely on small_printf to display errors. Always
display problems to the console, if possible.
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 ad17825bc..94615ba83 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -154,7 +154,7 @@ public: virtual ~fhandler_base (); /* Non-virtual simple accessor functions. */ - void set_io_handle (HANDLE); + void set_io_handle (HANDLE x) { io_handle = x; } void set_cb (size_t size) { cb = size; } DWORD get_device () { return status & FH_DEVMASK; } @@ -250,7 +250,7 @@ public: } virtual int open (int flags, mode_t mode = 0); virtual int close (); - virtual int fstat (struct stat *buf); + virtual int fstat (struct stat *buf) { return stat_dev (get_device (), get_unit (), get_namehash (), buf); } virtual int ioctl (unsigned int cmd, void *); virtual char const * ttyname () { return get_name(); } virtual int read (void *ptr, size_t len); |