diff options
author | Christopher Faylor <me@cgf.cx> | 2001-04-17 03:52:08 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-04-17 03:52:08 +0000 |
commit | 431ba7dd33c6c29bca5b1172c43d522c1fa152cf (patch) | |
tree | 6c35ba68e0ddb119924f6d89549a14f22feed658 /winsup/cygwin/fhandler.h | |
parent | 7ade56ca6aed6c0a1a7227934ea31160958306a3 (diff) | |
download | cygnal-431ba7dd33c6c29bca5b1172c43d522c1fa152cf.tar.gz cygnal-431ba7dd33c6c29bca5b1172c43d522c1fa152cf.tar.bz2 cygnal-431ba7dd33c6c29bca5b1172c43d522c1fa152cf.zip |
* path.h (cwdstuff): Move class.
* cygheap.h (cwdstuff): To here.
(init_cygheap): Add cwd field.
* child_info.h (cygheap_exec_info): Eliminate cwd stuff.
(child_info_spawn): Ditto.
* dcrt0.cc (dll_crt0_1): Remove cygcwd.fixup_after_exec call. Convert cygcwd
reference to cygheap->cwd.
* path.cc: Ditto, throughout.
(cwdstuff::copy): Eliminate.
(cwdstuff::fixup_after_exec): Ditto.
* spawn.cc (spawn_guts): Eliminate call to cygcwd.copy.
* fhandler.h (FH_OSS_DSP): Move into "fast" device category.
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 f99b0938e..fc54376da 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -88,7 +88,6 @@ enum FH_PIPEW = 0x0000000a, /* write end of a pipe */ FH_SOCKET = 0x0000000b, /* is a socket */ FH_WINDOWS = 0x0000000c, /* is a window */ - FH_OSS_DSP = 0x0000000d, /* is the dsp audio device */ FH_SLOW = 0x00000010, /* "slow" device if below this */ /* Fast devices */ @@ -100,8 +99,9 @@ enum FH_RANDOM = 0x00000015, /* is a random device */ FH_MEM = 0x00000016, /* is a mem device */ FH_CLIPBOARD = 0x00000017, /* is a clipbaord device */ + FH_OSS_DSP = 0x00000018, /* is a dsp audio device */ - FH_NDEV = 0x00000018, /* Maximum number of devices */ + FH_NDEV = 0x00000019, /* Maximum number of devices */ FH_DEVMASK = 0x00000fff, /* devices live here */ FH_BAD = 0xffffffff }; |