/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997, 1998
* Sleepycat Software. All rights reserved.
*/
#include "config.h"
#ifndef lint
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#endif
#include "db_int.h"
#include "os_jump.h"
/*
* !!!
* Correct for systems that return NULL when you allocate 0 bytes of memory.
* There are several places in DB where we allocate the number of bytes held
* returns a NULL for that reason (which behavior is permitted by ANSI). We
* could make these calls macros on non-Alpha architectures (that's where we
* saw the problem), but it's probably not worth the autoconf complexity.
*
* !!!
* Correct for systems that don't set errno when malloc and friends fail.
*
* Out of memory.
* We wish to hold the whole sky,
* But we never will.
*/
/*
* __os_strdup --
* The strdup(3) function for DB.
*
* PUBLIC: int __os_strdup __P((const char *, void *));
*/
int
const char *str;
void *storep;
{
int ret;
void *p;
return (ret);
*(void **)storep = p;
return (0);
}
/*
* __os_calloc --
* The calloc(3) function for DB.
*
* PUBLIC: int __os_calloc __P((size_t, size_t, void *));
*/
int
void *storep;
{
void *p;
int ret;
return (ret);
*(void **)storep = p;
return (0);
}
/*
* __os_malloc --
* The malloc(3) function for DB.
*
* PUBLIC: int __os_malloc __P((size_t, void *(*)(size_t), void *));
*/
int
{
void *p;
/* Never allocate 0 bytes -- some C libraries don't like it. */
if (size == 0)
++size;
/* Some C libraries don't correctly set errno when malloc(3) fails. */
errno = 0;
else
if (p == NULL) {
if (errno == 0)
return (errno);
}
#ifdef DIAGNOSTIC
#endif
*(void **)storep = p;
return (0);
}
/*
* __os_realloc --
* The realloc(3) function for DB.
*
* PUBLIC: int __os_realloc __P((void *, size_t));
*/
int
void *storep;
{
void *p, *ptr;
/* If we haven't yet allocated anything yet, simply call malloc. */
/* Never allocate 0 bytes -- some C libraries don't like it. */
if (size == 0)
++size;
/*
* Some C libraries don't correctly set errno when realloc(3) fails.
*
* Don't overwrite the original pointer, there are places in DB we
* try to continue after realloc fails.
*/
errno = 0;
else
if (p == NULL) {
if (errno == 0)
return (errno);
}
*(void **)storep = p;
return (0);
}
/*
* __os_free --
* The free(3) function for DB.
*
* PUBLIC: void __os_free __P((void *, size_t));
*/
void
void *ptr;
{
#ifdef DIAGNOSTIC
if (size != 0)
#endif
else
}
/*
* __os_freestr --
* The free(3) function for DB, freeing a string.
*
* PUBLIC: void __os_freestr __P((void *));
*/
void
void *ptr;
{
#ifdef DIAGNOSTIC
#endif
else
}