2007-03-08 04:03:40 +08:00
|
|
|
/**********************************************************************
|
2017-07-03 05:35:47 +08:00
|
|
|
* File: memry.cpp (Formerly memory.c)
|
2007-03-08 04:03:40 +08:00
|
|
|
* Description: Memory allocation with builtin safety checks.
|
|
|
|
* Author: Ray Smith
|
|
|
|
* Created: Wed Jan 22 09:43:33 GMT 1992
|
|
|
|
*
|
|
|
|
* (C) Copyright 1992, Hewlett-Packard Ltd.
|
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
|
|
|
** limitations under the License.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include "memry.h"
|
2012-02-02 10:51:56 +08:00
|
|
|
#include <stdlib.h>
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2012-02-02 10:51:56 +08:00
|
|
|
// With improvements in OS memory allocators, internal memory management
|
|
|
|
// is no longer required, so all these functions now map to their malloc
|
|
|
|
// family equivalents.
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2012-02-02 10:51:56 +08:00
|
|
|
// TODO(rays) further cleanup by redirecting calls to new and creating proper
|
|
|
|
// constructors.
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2012-02-02 10:51:56 +08:00
|
|
|
char *alloc_string(inT32 count) {
|
2008-12-31 02:20:15 +08:00
|
|
|
// Round up the amount allocated to a multiple of 4
|
|
|
|
return static_cast<char*>(malloc((count + 3) & ~3));
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
|
2012-02-02 10:51:56 +08:00
|
|
|
void free_string(char *string) {
|
2007-03-08 04:03:40 +08:00
|
|
|
free(string);
|
|
|
|
}
|
|
|
|
|
2012-02-02 10:51:56 +08:00
|
|
|
void *alloc_mem(inT32 count) {
|
|
|
|
return malloc(static_cast<size_t>(count));
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
|
2012-02-02 10:51:56 +08:00
|
|
|
void free_mem(void *oldchunk) {
|
2007-03-08 04:03:40 +08:00
|
|
|
free(oldchunk);
|
|
|
|
}
|