annotate src/s/umips.h @ 155:43dd3413c7c7 r20-3b4

Import from CVS: tag r20-3b4
author cvs
date Mon, 13 Aug 2007 09:39:39 +0200
parents 376386a54a3c
children 0132846995bd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 /* Definitions file for GNU Emacs running on Mips operating system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 That system can emulate either BSD or Sys V, in either case with changes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 If BSD is defined, we assume BSD is being emulated; otherwise, Sys V. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 #ifdef BSD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 #include "bsd4-3.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 #define C_SWITCH_SYSTEM -systype bsd43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 #define LD_SWITCH_SYSTEM -systype bsd43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 #define LIBS_SYSTEM -lmld
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #define LIBS_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 #define START_FILES pre-crt0.o /lib/crt1.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 #define LIB_STANDARD -lc /usr/lib/crtn.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #define COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 #define TERMINFO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 #undef MAIL_USE_FLOCK /* Someone should check this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 #else /* not BSD */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #define DONT_DEFINE_NO_REMAP /* `static' hack not needed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #include "usg5-2-2.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #define LIBS_SYSTEM -lmld
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #define LIBS_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define START_FILES pre-crt0.o /usr/lib/crt1.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #define LIB_STANDARD -lbsd -lc /usr/lib/crtn.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 /* #define LIBS_TERMCAP -lcurses */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #define C_SWITCH_SYSTEM -I/usr/include/bsd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 /* Don't try to use SIGIO even though it is defined. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #define BROKEN_SIGIO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 /* Describe special kernel features. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #if defined(emacs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include <bsd/sys/time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 /* The `select' in the system won't work for pipes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 so don't use it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #define BROKEN_SELECT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #define HAVE_PTYS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 /* ??? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #define IRIS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #endif /* not BSD */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /* High order bit must be stripped off nlist return values */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #define FIXUP_KERNEL_SYMBOL_ADDR(NL) (NL)[0].n_value &= 0x7fffffff;