Path: utzoo!attcan!uunet!super!rminnich From: rminnich@super.ORG (Ronald G Minnich) Newsgroups: comp.sys.amiga.tech Subject: Re: WB 1.4 (actually Amiga & MMU) Message-ID: <5002@super.ORG> Date: 17 Jan 89 16:51:43 GMT References: <1656@ardent.UUCP> <6782@killer.DALLAS.TX.US> <13592@cup.portal.com> Sender: news@super.ORG Reply-To: rminnich@brainiac.UUCP (Ronald G Minnich) Distribution: na Organization: Supercomputing Research Center, Lanham, Md. Lines: 13 In article <13592@cup.portal.com> FelineGrace@cup.portal.com (Dana B Bourgeois) writes: >Does anyone use the AllocRemember() and FreeRemember() calls documented in the >Addison-Wesley 'Intuition Reference Manual', pp 211-214? If not, why not? In 1986, under lattice 3.03, i admired their clever design and used them all the time. They are neat. In fact a #defined malloc to be an AllocRemember. When LC 4.0 came along, it appeared that their malloc called AllocRemember, and so i stopped #defining things. When Arp came along i started using ArpAlloc. AllocRemember and friends are useful if your storage consists of many heaps, as that is essentially what they buy you (i.e. mark/restore but on a heap of your choice). But generally i think most people allocate and free discrete things, and for this they are less useful. ron