Subversion Repositories shark

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Paolo Gai           <pj@gandalf.sssup.it>
10
 *   Massimiliano Giorgi <massy@gandalf.sssup.it>
11
 *   Luca Abeni          <luca@gandalf.sssup.it>
12
 *   (see the web pages for full authors list)
13
 *
14
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
15
 *
16
 * http://www.sssup.it
17
 * http://retis.sssup.it
18
 * http://shark.sssup.it
19
 */
20
 
21
/*
22
 * Copyright (C) 1999 Massimiliano Giorgi
23
 *
24
 * This program is free software; you can redistribute it and/or modify
25
 * it under the terms of the GNU General Public License as published by
26
 * the Free Software Foundation; either version 2 of the License, or
27
 * (at your option) any later version.
28
 *
29
 * This program is distributed in the hope that it will be useful,
30
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32
 * GNU General Public License for more details.
33
 *
34
 * You should have received a copy of the GNU General Public License
35
 * along with this program; if not, write to the Free Software
36
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
37
 *
38
 */
39
 
40
/*
41
 * CVS :        $Id: paths.h,v 1.1.1.1 2002-03-29 14:12:51 pj Exp $
42
 *
43
 * File:        $File$
44
 * Revision:    $Revision: 1.1.1.1 $
45
 * Last update: $Date: 2002-03-29 14:12:51 $
46
 */
47
 
48
/*
49
 * Copyright (c) 1989, 1993
50
 *      The Regents of the University of California.  All rights reserved.
51
 *
52
 * Redistribution and use in source and binary forms, with or without
53
 * modification, are permitted provided that the following conditions
54
 * are met:
55
 * 1. Redistributions of source code must retain the above copyright
56
 *    notice, this list of conditions and the following disclaimer.
57
 * 2. Redistributions in binary form must reproduce the above copyright
58
 *    notice, this list of conditions and the following disclaimer in the
59
 *    documentation and/or other materials provided with the distribution.
60
 * 3. All advertising materials mentioning features or use of this software
61
 *    must display the following acknowledgement:
62
 *      This product includes software developed by the University of
63
 *      California, Berkeley and its contributors.
64
 * 4. Neither the name of the University nor the names of its contributors
65
 *    may be used to endorse or promote products derived from this software
66
 *    without specific prior written permission.
67
 *
68
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
69
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
70
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
71
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
72
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
73
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
74
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
75
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
76
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
77
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
78
 * SUCH DAMAGE.
79
 *
80
 *      @(#)paths.h     8.1 (Berkeley) 6/2/93
81
 */
82
 
83
/* MODIFIED */
84
 
85
#ifndef _PATHS_H_
86
#define _PATHS_H_
87
 
88
#include <sys/cdefs.h>
89
 
90
/* Default search path. */
91
#define _PATH_DEFPATH   "/usr/bin:/bin"
92
/* All standard utilities path. */
93
#define _PATH_STDPATH \
94
        "/usr/bin:/bin:/usr/sbin:/sbin:"
95
 
96
#define _PATH_BSHELL    "/bin/sh"
97
#define _PATH_CONSOLE   "/dev/console"
98
#define _PATH_CSHELL    "/bin/csh"
99
#define _PATH_DEVDB     "/var/run/dev.db"
100
#define _PATH_DEVNULL   "/dev/null"
101
#define _PATH_DRUM      "/dev/drum"
102
#define _PATH_FTPUSERS  "/etc/ftpusers"
103
#define _PATH_KMEM      "/dev/kmem"
104
#define _PATH_MAILDIR   "/var/mail"
105
#define _PATH_MAN       "/usr/share/man"
106
#define _PATH_MEM       "/dev/mem"
107
#define _PATH_NOLOGIN   "/etc/nologin"
108
#define _PATH_SENDMAIL  "/usr/sbin/sendmail"
109
#define _PATH_SHELLS    "/etc/shells"
110
#define _PATH_TTY       "/dev/tty"
111
#define _PATH_UNIX      "don't use _PATH_UNIX"
112
#define _PATH_VI        "/usr/bin/vi"
113
 
114
/* Provide trailing slash, since mostly used for building pathnames. */
115
#define _PATH_DEV       "/dev/"
116
#define _PATH_TMP       "/tmp/"
117
#define _PATH_VARDB     "/var/db/"
118
#define _PATH_VARRUN    "/var/run/"
119
#define _PATH_VARTMP    "/var/tmp/"
120
#define _PATH_YP        "/var/yp/"
121
#define _PATH_UUCPLOCK  "/var/spool/lock/"
122
 
123
/* How to get the correct name of the kernel. */
124
//__BEGIN_DECLS
125
//const char *getbootfile __P((void));
126
//__END_DECLS
127
 
128
#endif /* !_PATHS_H_ */