diff options
author | Michael I. Bushnell <mib@gnu.org> | 1992-07-24 02:23:18 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1992-07-24 02:23:18 +0000 |
commit | ce10f2817ce510b9629dc744d1eeb03b0cc0d7e5 (patch) | |
tree | 5bf61dc131f7786559d6677f656d7ee3fbf9f51e /hurd/paths.h | |
parent | 32b2f7550dcf95091f8ebb87d32cdf8e32c7a35a (diff) |
Formerly paths.h.~10~
Diffstat (limited to 'hurd/paths.h')
-rw-r--r-- | hurd/paths.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/hurd/paths.h b/hurd/paths.h index 68f4b0c2..7fa1cfad 100644 --- a/hurd/paths.h +++ b/hurd/paths.h @@ -1,11 +1,11 @@ /* Standard Hurd pathnames. - Copyright (C) 1991 Free Software Foundation + Copyright (C) 1992 Free Software Foundation, Inc. This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. The GNU Hurd is distributed in the hope that it will be useful, @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with the GNU Hurd; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#pragma once - +#ifndef _HURD_PATHS_H +#define _HURD_PATHS_H /* Port rendezvous points are specified by symbols _SERVERS_FOO, the canonical pathname being /servers/foo. */ @@ -36,14 +36,19 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define _SERVERS_SOCKET _SERVERS "socket" /* Hurd servers are specified by symbols _HURD_FOO, - the canonical pathname being /libexec/foo. */ + the canonical pathname being /hurd/foo. */ + +#define _HURD "/hurd/" +#define _HURD_INIT _HURD "init" /* 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 "/libexec/" #define _HURD_SYMLINK _HURD "symlink" /* S_IFLNK */ #define _HURD_CHRDEV _HURD "chrdev" /* S_IFCHR */ #define _HURD_BLKDEV _HURD "blkdev" /* S_IFBLK */ #define _HURD_FIFO _HURD "fifo" /* S_IFIFO */ #define _HURD_IFSOCK _HURD "ifsock" /* S_IFSOCK */ + + +#endif /* hurd/paths.h */ |