diff options
| author | Dave Love | 2000-10-26 22:08:28 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-26 22:08:28 +0000 |
| commit | dfcd7ccfe94b3071385babc17f176543e2341602 (patch) | |
| tree | 830e35039517ac7a7b0030030765cc758107045c /src/s | |
| parent | ae65cd84672c5a92018b35c5992b7945bc32438d (diff) | |
| download | emacs-dfcd7ccfe94b3071385babc17f176543e2341602.tar.gz emacs-dfcd7ccfe94b3071385babc17f176543e2341602.zip | |
Don't define SYSTEM_MALLOC so that we can find out
when it's necessary.
Diffstat (limited to 'src/s')
| -rw-r--r-- | src/s/sol2-5.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/s/sol2-5.h b/src/s/sol2-5.h index d80c22b37ba..b3b0470cc80 100644 --- a/src/s/sol2-5.h +++ b/src/s/sol2-5.h | |||
| @@ -19,7 +19,13 @@ | |||
| 19 | /* This is the only known way to avoid some crashes | 19 | /* This is the only known way to avoid some crashes |
| 20 | that seem to relate to screwed up malloc data | 20 | that seem to relate to screwed up malloc data |
| 21 | after deleting a frame. */ | 21 | after deleting a frame. */ |
| 22 | #define SYSTEM_MALLOC | 22 | /* rms: I think the problems using ralloc had to do with system |
| 23 | libraries that called the system malloc even if we linked in the | ||
| 24 | GNU malloc. I could not see any way to fix the problem except to | ||
| 25 | have just one malloc and that had to be the system one. */ | ||
| 26 | /* This is not always necessary. Turned off at present for testers to | ||
| 27 | identify any problems with gmalloc more accurately. */ | ||
| 28 | /* #define SYSTEM_MALLOC */ | ||
| 23 | 29 | ||
| 24 | #if 0 /* A recent patch in unexelf.c should eliminate the need for this. */ | 30 | #if 0 /* A recent patch in unexelf.c should eliminate the need for this. */ |
| 25 | /* Don't use the shared libraries for -lXt and -lXaw, | 31 | /* Don't use the shared libraries for -lXt and -lXaw, |