mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
06d1c0e1eb
git-svn-id: file:///svn/toku/tokudb@23493 c7de825b-a66e-492c-adef-691d508d4ae1
55 lines
1.4 KiB
C
55 lines
1.4 KiB
C
/* An implementation of memory that can be made to return NULL and ENOMEM on certain mallocs. */
|
|
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007-2010 Tokutek Inc. All rights reserved."
|
|
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
|
|
|
|
#include "memory.h"
|
|
#include "toku_assert.h"
|
|
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
int *toku_dead_mallocs=0;
|
|
int toku_malloc_counter=0;
|
|
|
|
void toku_malloc_cleanup(void) {}
|
|
void toku_free(void*x) {
|
|
free(x);
|
|
}
|
|
|
|
// if it fails, return 1, and set errno
|
|
static int does_malloc_fail (void) {
|
|
if (toku_dead_mallocs) {
|
|
int mnum = *toku_dead_mallocs;
|
|
if (mnum==toku_malloc_counter) {
|
|
toku_malloc_counter++;
|
|
toku_dead_mallocs++;
|
|
errno=ENOMEM;
|
|
return 1;
|
|
}
|
|
}
|
|
toku_malloc_counter++;
|
|
return 0;
|
|
}
|
|
|
|
void* toku_malloc(size_t n) {
|
|
if (does_malloc_fail()) return 0;
|
|
return malloc(n);
|
|
}
|
|
|
|
void *toku_memdup (const void *v, size_t len) {
|
|
void *r=toku_malloc(len);
|
|
memcpy(r,v,len);
|
|
return r;
|
|
}
|
|
|
|
char *toku_strdup (const char *s) {
|
|
return toku_memdup(s, strlen(s)+1);
|
|
}
|
|
|
|
void *toku_realloc(void *p, size_t size) {
|
|
if (p==0) return toku_malloc(size);
|
|
if (does_malloc_fail()) return 0;
|
|
return realloc(p, size);
|
|
}
|