Mercurial > hg > xemacs-beta
annotate src/s/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 | 023b83f4e54b |
children | aa5ed11f473b |
rev | line source |
---|---|
613 | 1 /* Definitions file for XEmacs running on bsd 4.3 |
0 | 2 Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
3 | |
613 | 4 This file is part of XEmacs. |
0 | 5 |
613 | 6 XEmacs is free software; you can redistribute it and/or modify |
0 | 7 it under the terms of the GNU General Public License as published by |
8 the Free Software Foundation; either version 2, or (at your option) | |
9 any later version. | |
10 | |
613 | 11 XEmacs is distributed in the hope that it will be useful, |
0 | 12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with XEmacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
20 | |
21 /* Synched up with: FSF 19.31. */ | |
22 | |
23 #include "bsd4-2.h" | |
24 | |
25 #undef BSD4_2 | |
26 | |
27 /* We give these symbols the numeric values found in <sys/param.h> to | |
28 avoid warnings about redefined macros. */ | |
29 #ifndef BSD4_3 | |
30 #define BSD4_3 1 | |
31 #endif /* BSD4_3 */ | |
32 | |
33 #ifdef BSD_WAS_DEFINED | |
34 #undef BSD | |
35 #endif | |
36 | |
37 #ifndef BSD | |
38 #define BSD 43 | |
39 #endif /* BSD */ | |
40 | |
41 /* define MAIL_USE_FLOCK if the mailer uses flock | |
42 to interlock access to /usr/spool/mail/$USER. | |
43 The alternative is that a lock file named | |
44 /usr/spool/mail/$USER.lock. */ | |
45 | |
46 #define MAIL_USE_FLOCK | |
47 | |
48 /* Apparently not needed any more? */ | |
49 | |
50 #undef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP |