32 lines
1.3 KiB
C
32 lines
1.3 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* Objective Caml */
|
|
/* */
|
|
/* Damien Doligez, projet Para, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 1998 Institut National de Recherche en Informatique et */
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
/* the special exception on linking described in file ../LICENSE. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
#include "main.h"
|
|
|
|
/* Allocate from application memory or from Multifinder memory;
|
|
always leave at least kMinimumMemory free in application memory.
|
|
*/
|
|
OSErr AllocHandle (Size size, Handle *result)
|
|
{
|
|
OSErr err;
|
|
|
|
if (FreeMem () >= size + kMinimumMemory){
|
|
*result = NewHandle (size);
|
|
err = MemError ();
|
|
}
|
|
if (err != noErr) *result = TempNewHandle (size, &err);
|
|
return err;
|
|
}
|