1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-16 10:50:49 -08:00

*** empty log message ***

This commit is contained in:
Dave Love 2003-06-16 18:33:59 +00:00
parent f6563c4c31
commit ffd9295047
3 changed files with 19 additions and 2 deletions

View file

@ -81,3 +81,8 @@ The portable alloca needs to use GC_malloc to have the same effect as
conservative stack scanning. conservative stack scanning.
Don't know if this can work without NO_UNION_TYPE. Don't know if this can work without NO_UNION_TYPE.
Might be worth allowing XGC_MALLOC to allocate using mmap (in an
already-dumped Emacs), since the address doesn't have to fit into
EMACS_INT and that might save significant allocation in precious Lisp
address space. Should be able to do similarly with string data.

View file

@ -1,5 +1,11 @@
2003-06-16 Dave Love <fx@gnu.org> 2003-06-16 Dave Love <fx@gnu.org>
* include/Makefile.am (dist_noinst_HEADERS): Remove some files not
currently installed.
* Makefile.am (libgc_la_SOURCES): Remove some files not currently
installed.
* Makefile.am, Makefile.dj, Makefile.in, aclocal.m4, alloc.c: * Makefile.am, Makefile.dj, Makefile.in, aclocal.m4, alloc.c:
* alpha_mach_dep.S, configure, dbg_mlc.c, dyn_load.c, finalize.c: * alpha_mach_dep.S, configure, dbg_mlc.c, dyn_load.c, finalize.c:
* gc_dlopen.c, mach_dep.c, mark.c, mark_rts.c, misc.c: * gc_dlopen.c, mach_dep.c, mark.c, mark_rts.c, misc.c:
@ -12,7 +18,7 @@
* configure.in: Merge changes from 6.2alpha6. * configure.in: Merge changes from 6.2alpha6.
(AC_REVISION): Removed. (AC_REVISION): Removed.
(Ac_INIT): Modify version and remove bug address. (Ac_INIT): Remove bug address.
* Makefile.direct: Removed. * Makefile.direct: Removed.
@ -23,7 +29,7 @@
2003-06-06 Dave Love <fx@gnu.org> 2003-06-06 Dave Love <fx@gnu.org>
This is based on Boehm's 6.2alpha4 version with the cord and tests This is based on Boehm's 6.2alpha4 version with the cord and tests
directories removed.. directories removed.
* include/private/gcconfig.h (GET_MEM): Comment out top * include/private/gcconfig.h (GET_MEM): Comment out top
definition. definition.

View file

@ -1,3 +1,9 @@
2003-06-16 Dave Love <fx@gnu.org>
* Makefile.in (GCINCLUDE) [BOEHM_GC]: New. (Don't use CPPFLAGS.)
(ALL_CFLAGS): Use it.
(gclib): Don't use top_srcdir.
2003-06-11 Dave Love <fx@gnu.org> 2003-06-11 Dave Love <fx@gnu.org>
* xterm.c [BOEHM_GC]: Include gc.h. * xterm.c [BOEHM_GC]: Include gc.h.