summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1991-10-30 11:35:53 +0000
committerMichael I. Bushnell <mib@gnu.org>1991-10-30 11:35:53 +0000
commit70444bb04c0b7ffe760d0a40f95409a5ee1545b7 (patch)
treeedf727c0b52bd3a62c775e16198a0445f3ec3c9a /hurd
parent0183ae4167ef53c5e5e79390ef6422bb19232d28 (diff)
Formerly paths.h.~2~
Diffstat (limited to 'hurd')
-rw-r--r--hurd/paths.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/hurd/paths.h b/hurd/paths.h
index d79b15fa..1f5a8418 100644
--- a/hurd/paths.h
+++ b/hurd/paths.h
@@ -19,14 +19,21 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#pragma once
+
/* Port rendezvous points are specified by symbols _SERVERS_FOO,
the canonical pathname being /servers/foo. */
#define _SERVERS_CORE "/servers/core"
+#define _SERVERS_EXEC "/servers/exec"
/* Hurd servers are specified by symbols _HURD_FOO,
the canonical pathname being /hurd/foo. */
-#define _HURD_IFSOCK "/hurd/ifsock"
-#define _HURD_SYMLINK "/hurd/symlink"
+/* Standard translators for special node types.
+ These pathnames are used by the C library.
+ UFS and perhaps other filesystems short-circuit these translators. */
+#define _HURD_SYMLINK "/hurd/symlink" /* S_IFLNK */
+#define _HURD_CHRDEV "/hurd/chrdev" /* S_IFCHR */
+#define _HURD_BLKDEV "/hurd/blkdev" /* S_IFBLK */
+#define _HURD_IFSOCK "/hurd/ifsock" /* S_IFSOCK */