aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-07 20:03:52 -0700
committerDan Nicolaescu2010-07-07 20:03:52 -0700
commit313d9eb21863418cb91328c3d5ef0c2d356fc483 (patch)
tree87aa5f39b43cc9c308839047bc83345d518f5d0a /src/ChangeLog
parentd734dbbd24fca96383d2583c36d2a805181cf306 (diff)
downloademacs-313d9eb21863418cb91328c3d5ef0c2d356fc483.tar.gz
emacs-313d9eb21863418cb91328c3d5ef0c2d356fc483.zip
Simplify start_of_data, start_of_text and related code.
* src/mem-limits.h: Remove !emacs and _LIBC conditional code. (start_of_data): Merge into start_of_data function. * src/sysdep.c (start_of_text): Remove. Move simplified versions of it in the only users: src/unexaix.c and unexec.c. (read_input_waiting): Remove local declaration of quit_char. (start, etext): Remove declarations. (start_of_data): Merge with the version in mem-limits.h and move to vm-limits.c. * src/vm-limit.c (start_of_data): Merged and simplified version of the code formerly in mem-limits.h and sysdep.c. * src/unexec.c (start): New declaration, moved from sysdep.c. (start_of_text): Simplified version of the code formerly in sysdep.c. * unexaix.c (start_of_text): Simplified version of the code formerly in sysdep.c. * src/m/alpha.h (HAVE_TEXT_START): Remove. (TEXT_START): Move ... * src/unexalpha.c (TEXT_START): ... here. * src/s/hpux10-20.h (TEXT_START): Remove. * src/s/darwin.h (TEXT_START): * src/m/mips.h (TEXT_START): * src/m/macppc.h (HAVE_TEXT_START): * src/m/m68k.h (TEXT_START): * src/m/iris4d.h (TEXT_START): * src/m/intel386.h (TEXT_START): * src/m/ibmrs6000.h (TEXT_START): * src/m/ia64.h (HAVE_TEXT_START): * src/s/msdos.h (TEXT_START): Likewise.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4896708b979..b601fecf809 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,34 @@
12010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
2
3 Simplify cstart_of_data, start_of_code and related code.
4 * mem-limits.h: Remove !emacs and _LIBC conditional code.
5 (start_of_data): Merge into start_of_data function.
6 * sysdep.c (start_of_text): Remove. Move simplified versions of
7 it in the only users: unexaix.c and unexec.c.
8 (read_input_waiting): Remove local declaration of quit_char.
9 (start, etext): Remove declarations.
10 (start_of_data): Merge with the version in mem-limits.h and move
11 to vm-limits.c.
12 * vm-limit.c (start_of_data): Merged and simplified version of the
13 code formerly in mem-limits.h and sysdep.c.
14 * unexec.c (start): New declaration, moved from sysdep.c.
15 (start_of_text): Simplified version of the code formerly in sysdep.c.
16 * unexaix.c (start_of_text): Simplified version of the code
17 formerly in sysdep.c.
18 * m/alpha.h (HAVE_TEXT_START): Remove.
19 (TEXT_START): Move ...
20 * unexalpha.c (TEXT_START): ... here.
21 * s/hpux10-20.h (TEXT_START): Remove.
22 * s/darwin.h (TEXT_START):
23 * m/mips.h (TEXT_START):
24 * m/macppc.h (HAVE_TEXT_START):
25 * m/m68k.h (TEXT_START):
26 * m/iris4d.h (TEXT_START):
27 * m/intel386.h (TEXT_START):
28 * m/ibmrs6000.h (TEXT_START):
29 * m/ia64.h (HAVE_TEXT_START):
30 * s/msdos.h (TEXT_START): Likewise.
31
12010-07-07 Andreas Schwab <schwab@linux-m68k.org> 322010-07-07 Andreas Schwab <schwab@linux-m68k.org>
2 33
3 * alloc.c (overrun_check_malloc, overrun_check_realloc) 34 * alloc.c (overrun_check_malloc, overrun_check_realloc)