Deleted Added
full compact
config_p.h (150479) config_p.h (167469)
1/* $FreeBSD: head/bin/csh/config_p.h 150479 2005-09-22 18:32:53Z mp $ */
1/* $FreeBSD: head/bin/csh/config_p.h 167469 2007-03-11 22:41:19Z mp $ */
2/*
3 * config.h -- configure various defines for tcsh
4 *
5 * All source files should #include this FIRST.
6 *
7 * Edit this to match your system type.
8 */
9

--- 7 unchanged lines hidden (view full) ---

17
18/*
19 * POSIXJOBS This system supports the optional IEEE Std 1003.1-1988 (POSIX)
20 * job control facilities.
21 */
22#define POSIXJOBS
23
24/*
2/*
3 * config.h -- configure various defines for tcsh
4 *
5 * All source files should #include this FIRST.
6 *
7 * Edit this to match your system type.
8 */
9

--- 7 unchanged lines hidden (view full) ---

17
18/*
19 * POSIXJOBS This system supports the optional IEEE Std 1003.1-1988 (POSIX)
20 * job control facilities.
21 */
22#define POSIXJOBS
23
24/*
25 * POSIXSIGS Use the POSIX signal facilities to emulate BSD signals.
26 */
27#undef POSIXSIGS
28
29/*
30 * VFORK This machine has a vfork().
31 * It used to be that for job control to work, this define
32 * was mandatory. This is not the case any more.
33 * If you think you still need it, but you don't have vfork,
34 * define this anyway and then do #define vfork fork.
35 * I do this anyway on a Sun because of yellow pages brain damage,
36 * [should not be needed under 4.1]
37 * and on the iris4d cause SGI's fork is sufficiently "virtual"

--- 5 unchanged lines hidden (view full) ---

43
44/*
45 * BSDJOBS You have BSD-style job control (both process groups and
46 * a tty that deals correctly
47 */
48#define BSDJOBS
49
50/*
25 * VFORK This machine has a vfork().
26 * It used to be that for job control to work, this define
27 * was mandatory. This is not the case any more.
28 * If you think you still need it, but you don't have vfork,
29 * define this anyway and then do #define vfork fork.
30 * I do this anyway on a Sun because of yellow pages brain damage,
31 * [should not be needed under 4.1]
32 * and on the iris4d cause SGI's fork is sufficiently "virtual"

--- 5 unchanged lines hidden (view full) ---

38
39/*
40 * BSDJOBS You have BSD-style job control (both process groups and
41 * a tty that deals correctly
42 */
43#define BSDJOBS
44
45/*
51 * BSDSIGS You have 4.2-style signals, rather than USG style.
52 * Note: POSIX systems should not define this unless they
53 * have sigvec() and friends (ie: 4.3BSD-RENO, HP-UX).
54 */
55#define BSDSIGS
56
57/*
58 * BSDTIMES You have BSD-style process time stuff (like rusage)
59 * This may or may not be true. For example, Apple Unix
46 * BSDTIMES You have BSD-style process time stuff (like rusage)
47 * This may or may not be true. For example, Apple Unix
60 * (OREO) has BSDJOBS and BSDSIGS but not BSDTIMES.
48 * (OREO) has BSDJOBS but not BSDTIMES.
61 */
62#define BSDTIMES
63
64/*
65 * BSDLIMIT You have BSD-style resource limit stuff (getrlimit/setrlimit)
66 */
67#define BSDLIMIT
68

--- 59 unchanged lines hidden ---
49 */
50#define BSDTIMES
51
52/*
53 * BSDLIMIT You have BSD-style resource limit stuff (getrlimit/setrlimit)
54 */
55#define BSDLIMIT
56

--- 59 unchanged lines hidden ---