#include "config.h"
#ifndef lint
static const char sccsid[] = "@(#)os_alloc.c 10.10 (Sleepycat) 10/12/98";
#endif
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#endif
#include "db_int.h"
#include "os_jump.h"
int
__os_strdup(str, storep)
const char *str;
void *storep;
{
size_t size;
int ret;
void *p;
*(void **)storep = NULL;
size = strlen(str) + 1;
if ((ret = __os_malloc(size, NULL, &p)) != 0)
return (ret);
memcpy(p, str, size);
*(void **)storep = p;
return (0);
}
int
__os_calloc(num, size, storep)
size_t num, size;
void *storep;
{
void *p;
int ret;
size *= num;
if ((ret = __os_malloc(size, NULL, &p)) != 0)
return (ret);
memset(p, 0, size);
*(void **)storep = p;
return (0);
}
int
__os_malloc(size, db_malloc, storep)
size_t size;
void *(*db_malloc) __P((size_t)), *storep;
{
void *p;
*(void **)storep = NULL;
if (size == 0)
++size;
errno = 0;
if (db_malloc != NULL)
p = db_malloc(size);
else if (__db_jump.j_malloc != NULL)
p = __db_jump.j_malloc(size);
else
p = malloc(size);
if (p == NULL) {
if (errno == 0)
errno = ENOMEM;
return (errno);
}
#ifdef DIAGNOSTIC
memset(p, 0xdb, size);
#endif
*(void **)storep = p;
return (0);
}
int
__os_realloc(storep, size)
void *storep;
size_t size;
{
void *p, *ptr;
ptr = *(void **)storep;
if (ptr == NULL)
return (__os_malloc(size, NULL, storep));
if (size == 0)
++size;
errno = 0;
if (__db_jump.j_realloc != NULL)
p = __db_jump.j_realloc(ptr, size);
else
p = realloc(ptr, size);
if (p == NULL) {
if (errno == 0)
errno = ENOMEM;
return (errno);
}
*(void **)storep = p;
return (0);
}
void
__os_free(ptr, size)
void *ptr;
size_t size;
{
#ifdef DIAGNOSTIC
if (size != 0)
memset(ptr, 0xdb, size);
#endif
if (__db_jump.j_free != NULL)
__db_jump.j_free(ptr);
else
free(ptr);
}
void
__os_freestr(ptr)
void *ptr;
{
#ifdef DIAGNOSTIC
memset(ptr, 0xdb, strlen(ptr) + 1);
#endif
if (__db_jump.j_free != NULL)
__db_jump.j_free(ptr);
else
free(ptr);
}