Mercurial > emacs
comparison src/unexaix.c @ 109168:fb5779a6cf4b
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.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Wed, 07 Jul 2010 20:03:52 -0700 |
parents | 912a8c0c9a8a |
children | 99084f50aa8e |
comparison
equal
deleted
inserted
replaced
109167:ec5aba8edfaa | 109168:fb5779a6cf4b |
---|---|
69 #include <sys/stat.h> | 69 #include <sys/stat.h> |
70 #include <errno.h> | 70 #include <errno.h> |
71 #include <unistd.h> | 71 #include <unistd.h> |
72 #include <fcntl.h> | 72 #include <fcntl.h> |
73 | 73 |
74 extern char *start_of_text (void); /* Start of text */ | 74 char *start_of_text (void); /* Start of text */ |
75 extern char *start_of_data (void); /* Start of initialized data */ | 75 extern char *start_of_data (void); /* Start of initialized data */ |
76 | 76 |
77 extern int _data; | 77 extern int _data; |
78 extern int _text; | 78 extern int _text; |
79 | 79 |
667 } | 667 } |
668 } | 668 } |
669 return 0; | 669 return 0; |
670 } | 670 } |
671 | 671 |
672 /* | |
673 * Return the address of the start of the text segment prior to | |
674 * doing an unexec. After unexec the return value is undefined. | |
675 * See crt0.c for further explanation and _start. | |
676 * | |
677 */ | |
678 | |
679 char * | |
680 start_of_text (void) | |
681 { | |
682 return ((char *) 0x10000000); | |
683 } | |
684 | |
672 /* arch-tag: 0783857a-7c2d-456f-a426-58b722d69fd0 | 685 /* arch-tag: 0783857a-7c2d-456f-a426-58b722d69fd0 |
673 (do not change this comment) */ | 686 (do not change this comment) */ |