summaryrefslogtreecommitdiffstats
path: root/src/misc/util/safe_mem.c
blob: 5a8a5de83b7f3f262ebb8207162a6f8ccec60d0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * Revision Control Information
 *
 * /projects/hsis/CVS/utilities/util/safe_mem.c,v
 * rajeev
 * 1.3
 * 1995/08/08 22:41:29
 *
 */
/* LINTLIBRARY */

#include "util.h"

/*
 *  These are interface routines to be placed between a program and the
 *  system memory allocator.  
 *
 *  It forces well-defined semantics for several 'borderline' cases:
 *
 *    malloc() of a 0 size object is guaranteed to return something
 *        which is not 0, and can safely be freed (but not dereferenced)
 *    free() accepts (silently) an 0 pointer
 *    realloc of a 0 pointer is allowed, and is equiv. to malloc()
 *    For the IBM/PC it forces no object > 64K; note that the size argument
 *        to malloc/realloc is a 'long' to catch this condition
 *
 *  The function pointer MMoutOfMemory() contains a vector to handle a
 *  'out-of-memory' error (which, by default, points at a simple wrap-up 
 *  and exit routine).
 */

extern char *MMalloc();
extern void MMout_of_memory();
extern char *MMrealloc();


void (*MMoutOfMemory)() = MMout_of_memory;


/* MMout_of_memory -- out of memory for lazy people, flush and exit */
void 
MMout_of_memory(size)
long size;
{
    (void) fflush(stdout);
    (void) fprintf(stderr, "\nout of memory allocating %u bytes\n",
           (unsigned) size);
    assert( 0 );
    exit(1);
}


char *
MMalloc(size)
long size;
{
    char *p;

#ifdef IBMPC
    if (size > 65000L) {
    if (MMoutOfMemory != (void (*)()) 0 ) (*MMoutOfMemory)(size);
    return NIL(char);
    }
#endif
    if (size == 0) size = sizeof(long);
    if ((p = (char *) malloc((unsigned) size)) == NIL(char)) {
    if (MMoutOfMemory != (void (*)()) 0 ) (*MMoutOfMemory)(size);
    return NIL(char);
    }
    return p;
}


char *
MMrealloc(obj, size)
char *obj;
long size;
{
    char *p;

#ifdef IBMPC
    if (size > 65000L) {
    if (MMoutOfMemory != (void (*)()) 0 ) (*MMoutOfMemory)(size);
    return NIL(char);
    }
#endif
    if (obj == NIL(char)) return MMalloc(size);
    if (size <= 0) size = sizeof(long);
    if ((p = (char *) realloc(obj, (unsigned) size)) == NIL(char)) {
    if (MMoutOfMemory != (void (*)()) 0 ) (*MMoutOfMemory)(size);
    return NIL(char);
    }
    return p;
}


void
MMfree(obj)
char *obj;
{
    if (obj != 0) {
    free(obj);
    }
}