diff options
author | Richard M. Stallman <rms@gnu.org> | 1990-11-12 20:20:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1990-11-12 20:20:43 +0000 |
commit | 5d501ebcd604fe6e04b3e8b86628c07d582bd084 (patch) | |
tree | dc79eca6d225c8fa7774795f5d9a1f94d2d9f735 /src/unexaix.c | |
parent | c02ade1c8df709b66b2bbc2da1b1a58074bac4ae (diff) | |
download | emacs-5d501ebcd604fe6e04b3e8b86628c07d582bd084.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/unexaix.c')
-rw-r--r-- | src/unexaix.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/unexaix.c b/src/unexaix.c index 2957f966902..a1adff12ec9 100644 --- a/src/unexaix.c +++ b/src/unexaix.c @@ -1,3 +1,25 @@ +/* + This file is not used because it occasionally fails to work. This + happens because the bss address when Emacs is run is not always the + same. If it happens to be different from what it was + when Emacs was dumped, the dumped data won't work. + No one has been able to prevent the address from varying. + + The following comments should be in etc/MACHINES if this dumping + is ever made to work: + + Note that Emacs can store the pure Lisp data in a shared segment on + this machine, but only if you put this command in one of the boot + scripts + + emacs -batch -q + + so that it is run as root when the machine is booted. This command + creates a read-only shared segment owned by root. Otherwise the + pure data is not shared. The pure data size is around 100K, which + may not be enough to matter for most users of this machine. +*/ + /* Dumping and loading data areas, for Emacs under AIX. (It may also work on other kinds of system V.) Copyright (C) 1990 Free Software Foundation, Inc. |