diff options
| author | Richard M. Stallman <rms@gnu.org> | 1992-10-06 05:09:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1992-10-06 05:09:37 +0000 |
| commit | 19a36ec6dcfbb35734f4f048afdaba3cff94356d (patch) | |
| tree | 53622770faf47bb0ea16d4e63d9e1a31a053e5d3 | |
| parent | 5743648e5f3f0e79d3918f024d5160cfd4b6b157 (diff) | |
| download | emacs-19a36ec6dcfbb35734f4f048afdaba3cff94356d.tar.gz | |
(main) [NeXT]: Call malloc_jumpstart.
| -rw-r--r-- | src/emacs.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index 695e866acc2..b288af0e2b9 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -235,6 +235,15 @@ main (argc, argv, envp) } #endif +#ifdef NeXT + static int malloc_cookie; + + /* This helps out unexnext.c. */ + if (initialized) + if (malloc_jumpstart (malloc_cookie) != 0) + printf ("malloc jumpstart failed!\n"); +#endif /* NeXT */ + #ifdef HAVE_X_WINDOWS /* Stupid kludge to catch command-line display spec. We can't handle this argument entirely in window system dependent code |
