diff options
| author | Richard M. Stallman | 1992-10-06 05:09:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-10-06 05:09:37 +0000 |
| commit | 19a36ec6dcfbb35734f4f048afdaba3cff94356d (patch) | |
| tree | 53622770faf47bb0ea16d4e63d9e1a31a053e5d3 /src/emacs.c | |
| parent | 5743648e5f3f0e79d3918f024d5160cfd4b6b157 (diff) | |
| download | emacs-19a36ec6dcfbb35734f4f048afdaba3cff94356d.tar.gz emacs-19a36ec6dcfbb35734f4f048afdaba3cff94356d.zip | |
(main) [NeXT]: Call malloc_jumpstart.
Diffstat (limited to 'src/emacs.c')
| -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) | |||
| 235 | } | 235 | } |
| 236 | #endif | 236 | #endif |
| 237 | 237 | ||
| 238 | #ifdef NeXT | ||
| 239 | static int malloc_cookie; | ||
| 240 | |||
| 241 | /* This helps out unexnext.c. */ | ||
| 242 | if (initialized) | ||
| 243 | if (malloc_jumpstart (malloc_cookie) != 0) | ||
| 244 | printf ("malloc jumpstart failed!\n"); | ||
| 245 | #endif /* NeXT */ | ||
| 246 | |||
| 238 | #ifdef HAVE_X_WINDOWS | 247 | #ifdef HAVE_X_WINDOWS |
| 239 | /* Stupid kludge to catch command-line display spec. We can't | 248 | /* Stupid kludge to catch command-line display spec. We can't |
| 240 | handle this argument entirely in window system dependent code | 249 | handle this argument entirely in window system dependent code |