/*! \file yof_stdmemory.c \brief 環境依存解決用メモリマネージャー \author Kenta Yoshimura $Id$ 68K におけるコードリソースではグローバルデータが使えなく、 stdlib.h の malloc() がグローバルデータに依存するため、 グローバルデータに依存せず malloc() ライクなメモリマネージャを提供します。 */ /* Copyright (C) 2003-2004 Kenta Yoshimura. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY AUTHOR PROJECT ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #if defined(macintosh) && !defined(powerc) # include # include "yof_stdmemory.h" # include "yof_stdmemory16.h" void * yof_MALLOC( size_t size ) { Handle handle; handle = NewHandle( size + sizeof( Handle ) ); if ( MemError() ) return NULL; HLock( handle ); **(Handle **)handle = handle; return (*handle) + sizeof( Handle ); } void yof_FREE( void * ptr ) { if ( NULL == ptr || 0 == GetHandleSize( *(((Handle *)ptr) - 1) ) ) { return; } else { Handle handle = *(((Handle *)ptr) - 1); HUnlock( handle ); DisposeHandle( handle ); } } void * yof_REALLOC( void * ptr, size_t size ) { if ( NULL == ptr || 0 == GetHandleSize( *(((Handle *)ptr) - 1) ) ) { return yof_MALLOC( size ); } else { Handle handle = *(((Handle *)ptr) - 1); HUnlock( handle ); SetHandleSize( handle, size + sizeof( Handle ) ); if ( MemError() ) return NULL; HLock( handle ); **(Handle **)handle = handle; return (*handle) + sizeof( Handle ); } } #endif // defined(macintosh) && !defined(powerc)