summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/devices.h
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2011-04-04 10:14:27 +0000
committerYaakov Selkowitz <yselkowi@redhat.com>2011-04-04 10:14:27 +0000
commit26968b5c0590cf2fd8ff916bc63e0936300160f6 (patch)
tree56c352c5d09f4ae1386599c6a86570f7faf60a62 /winsup/cygwin/devices.h
parent3f7dfed9e9620d1b49b1d37e0a183304cef2d104 (diff)
downloadcygnal-26968b5c0590cf2fd8ff916bc63e0936300160f6.tar.gz
cygnal-26968b5c0590cf2fd8ff916bc63e0936300160f6.tar.bz2
cygnal-26968b5c0590cf2fd8ff916bc63e0936300160f6.zip
* devices.h (fh_devices): Define FH_PROC_MIN_MINOR.
Reorder major-0 devices so that all /proc directories fall between FH_PROC and FH_PROC_MIN_MINOR. * path.h (isproc_dev): Redefine accordingly.
Diffstat (limited to 'winsup/cygwin/devices.h')
-rw-r--r--winsup/cygwin/devices.h33
1 files changed, 18 insertions, 15 deletions
diff --git a/winsup/cygwin/devices.h b/winsup/cygwin/devices.h
index 4441b4436..882ee51ce 100644
--- a/winsup/cygwin/devices.h
+++ b/winsup/cygwin/devices.h
@@ -1,6 +1,6 @@
/* devices.h
- Copyright 2002, 2003, 2004, 2005, 2007, 2009, 2010 Red Hat, Inc.
+ Copyright 2002, 2003, 2004, 2005, 2007, 2009, 2010, 2011 Red Hat, Inc.
This file is part of Cygwin.
@@ -39,22 +39,25 @@ enum fh_devices
FH_WINDOWS = FHDEV (13, 255),
FH_CLIPBOARD=FHDEV (13, 254),
- FH_PIPE = FHDEV (0, 255),
- FH_PIPER = FHDEV (0, 254),
- FH_PIPEW = FHDEV (0, 253),
- FH_FIFO = FHDEV (0, 252),
- FH_PROC = FHDEV (0, 250),
- FH_REGISTRY= FHDEV (0, 249),
- FH_PROCESS = FHDEV (0, 248),
+ /* begin /proc directories */
+ FH_PROC = FHDEV (0, 255),
+ FH_REGISTRY= FHDEV (0, 254),
+ FH_PROCNET = FHDEV (0, 253),
+ FH_PROCESSFD = FHDEV (0, 252),
+ FH_PROCSYS = FHDEV (0, 251),
+ FH_PROCSYSVIPC = FHDEV (0,250),
- FH_FS = FHDEV (0, 247), /* filesystem based device */
+ FH_PROC_MIN_MINOR = FHDEV (0,200),
+ /* end /proc directories */
- FH_NETDRIVE= FHDEV (0, 246),
- FH_DEV = FHDEV (0, 245),
- FH_PROCNET = FHDEV (0, 244),
- FH_PROCESSFD = FHDEV (0, 243),
- FH_PROCSYS = FHDEV (0, 242),
- FH_PROCSYSVIPC = FHDEV (0,241),
+ FH_PIPE = FHDEV (0, 199),
+ FH_PIPER = FHDEV (0, 198),
+ FH_PIPEW = FHDEV (0, 197),
+ FH_FIFO = FHDEV (0, 196),
+ FH_PROCESS = FHDEV (0, 195),
+ FH_FS = FHDEV (0, 194), /* filesystem based device */
+ FH_NETDRIVE= FHDEV (0, 193),
+ FH_DEV = FHDEV (0, 192),
DEV_FLOPPY_MAJOR = 2,
FH_FLOPPY = FHDEV (DEV_FLOPPY_MAJOR, 0),