Mercurial > hg > xemacs-beta
annotate src/s/mach-bsd4-3.h @ 1598:ac1be85b4a5f
[xemacs-hg @ 2003-07-31 13:32:24 by crestani]
2003-07-29 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
Markus Kaltenbach <makalten@informatik.uni-tuebingen.de>
* README.kkcc: Aligned to the changes.
* alloc.c: Implemented the kkcc_gc_stack.
(kkcc_gc_stack_init):
(kkcc_gc_stack_free):
(kkcc_gc_stack_realloc):
(kkcc_gc_stack_full):
(kkcc_gc_stack_empty):
(kkcc_gc_stack_push):
(kkcc_gc_stack_pop):
(kkcc_gc_stack_push_lisp_object):
(mark_object_maybe_checking_free): Push objects on kkcc stack instead
of marking.
(mark_struct_contents): Push objects on kkcc stack instead of marking.
(kkcc_marking): KKCC mark algorithm using the kkcc_gc_stack.
(mark_object): Removed KKCC ifdefs.
(garbage_collect_1): Push objects on kkcc stack instead of marking.
* data.c: Added XD_FLAG_NO_KKCC to ephemeron_description and to
weak_list_description.
* data.c (finish_marking_weak_lists): Push objects on kkcc stack
instead of marking.
(continue_marking_ephemerons): Push objects on kkcc stack instead
of marking.
(finish_marking_ephemerons): Push objects on kkcc stack instead
of marking.
* elhash.c (finish_marking_weak_hash_tables): Push objects on kkcc
stack instead of marking.
* eval.c: Added XD_FLAG_NO_KKCC to subr_description.
* lisp.h: Added prototype for kkcc_gc_stack_push_lisp_object.
* profile.c (mark_profiling_info_maphash): Push keys on kkcc stack
instead of marking.
author | crestani |
---|---|
date | Thu, 31 Jul 2003 13:32:26 +0000 |
parents | 3ecd8885ac67 |
children | c90385e49231 |
rev | line source |
---|---|
428 | 1 /* Synched up with: FSF 19.31. */ |
2 | |
3 /* I don't care if this doesn't do more than including bsd4-3.h; | |
4 Mach is not bsd4-3 and the moment you forget it chances are that | |
5 you're in deep shit. */ | |
6 | |
7 #include "bsd4-3.h" | |
8 | |
9 /* The rest of this stuff is XEmacs additions. */ | |
10 | |
11 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
12 It sets the Lisp variable system-type. */ | |
13 | |
14 #undef SYSTEM_TYPE | |
15 #define SYSTEM_TYPE "mach" | |
16 | |
17 /* Don't send signals to subprocesses by "typing" special chars at them. */ | |
18 #undef SIGNALS_VIA_CHARACTERS | |
19 | |
20 /* XEmacs change */ | |
21 /* unistd.h defines _POSIX_VERSION, which leads some things to believe | |
22 that _POSIX_PATH_MAX should be defined. Unfortunately, it isn't. */ | |
23 #ifndef NOT_C_CODE | |
24 #include <sys/param.h> | |
25 #define _POSIX_PATH_MAX MAXPATHLEN | |
26 #endif | |
27 | |
28 #ifndef NOT_C_CODE | |
29 typedef int pid_t; | |
30 /* XEmacs change */ | |
31 typedef unsigned short mode_t; | |
32 #endif /* NOT_C_CODE */ | |
33 | |
34 #if (defined(i386) || defined(ibmrt)) | |
35 /* use drem() instead of fmod() -- this is a BUG in the compiler runtime. */ | |
36 # define USE_DREM | |
37 #endif |