diff options
author | Christopher Faylor <me@cgf.cx> | 2006-01-07 17:57:26 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-01-07 17:57:26 +0000 |
commit | 85c804ec4be56ccc5efe4691aeb936df23e6df16 (patch) | |
tree | 202527c1d12e9dd088633f9425141fc043494bf5 /winsup/cygwin/fhandler.h | |
parent | a37aaf88a824d606550737bea761d7e3d4011942 (diff) | |
download | cygnal-85c804ec4be56ccc5efe4691aeb936df23e6df16.tar.gz cygnal-85c804ec4be56ccc5efe4691aeb936df23e6df16.tar.bz2 cygnal-85c804ec4be56ccc5efe4691aeb936df23e6df16.zip |
* fhandler.h (set_console_state_for_spawn): Eliminate argument from
declaration.
* fhandler.cc (set_console_state_for_spawn): Eliminate argument from
definition. Always check for invisible console.
(fhandler_console::need_invisible): Don't do anything if the windows station is
already not visible.
* spawn.cc (spawn_guts): Accommodate change of argument to
set_console_state_for_spawn.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index 86c318156..a7c759bf1 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -1365,6 +1365,6 @@ class select_stuff device_specific_mailslot (0) {} }; -void __stdcall set_console_state_for_spawn (bool) __attribute__ ((regparm (1))); +void __stdcall set_console_state_for_spawn (); #endif /* _FHANDLER_H_ */ |