[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Memory
- To: info-macl@cambridge.apple.com
- Subject: Memory
- From: lynch@aristotle.ils.nwu.edu (Richard Lynch)
- Date: Fri, 19 Jul 91 13:42:27 CDT
I've reset the numbers in my LSIZ resource, but they seem to get wiped out
before the Mac data I want gets loaded. This then causes another GC.
What are the EGC Generation 0, 1, 2 numbers?
Why will the following not compile?
(defstruct foo
(name))
(defconstant *foo1* (make-foo :name 'foo1))
(defconstant *foo2* (make-foo :name 'foo2))
(defconstant *foo3* (make-foo :name 'foo3))
(defconstant *foos* (list *foo1* *foo2* *foo3*))