File: xalloc.h

package info (click to toggle)
squid3 3.4.8-6%2Bdeb8u2~bpo70%2B1
  • links: PTS
  • area: main
  • in suites: wheezy-backports
  • size: 31,216 kB
  • sloc: cpp: 165,340; ansic: 21,998; sh: 12,166; makefile: 5,964; perl: 2,153; sql: 322; awk: 118
file content (75 lines) | stat: -rw-r--r-- 2,260 bytes parent folder | download | duplicates (3)
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
#ifndef _SQUID_COMPAT_XALLOC_H
#define _SQUID_COMPAT_XALLOC_H

#ifdef __cplusplus
extern "C" {
#endif

    /**
     * xcalloc() - same as calloc(3).  Used for portability.
     * Never returns NULL; fatal on error.
     *
     * Define failure_notify to receive error message.
     * otherwise perror() is used to display it.
     */
    void *xcalloc(size_t n, size_t sz);

    /**
     * xmalloc() - same as malloc(3).  Used for portability.
     * Never returns NULL; fatal on error.
     *
     * Define failure_notify to receive error message.
     * otherwise perror() is used to display it.
     */
    void *xmalloc(size_t sz);

    /**
     * xrealloc() - same as realloc(3). Used for portability.
     * Never returns NULL; fatal on error.
     */
    void *xrealloc(void *s, size_t sz);

    /**
     * free_const() - Same as free(3).  Used for portability.
     * Accepts pointers to dynamically allocated const data.
     *
     * Define failure_notify to receive error message.
     * otherwise perror() is used to display it.
     */
    void free_const(const void *s);

    /**
     *  xfree() - same as free(3).  Used for portability.
     * Accepts pointers to dynamically allocated const data.
     * Will not call free(3) if the pointer is NULL.
     *
     * Pointer is left with a value on completion.
     * Use safe_free() if the pointer needs to be set to NULL afterward.
     *
     * Define failure_notify to receive error message.
     * otherwise perror() is used to display it.
     */
    static inline void xfree(const void *p) { if (p) free_const(p); }

    /**
     *  safe_free() - same as free(3).  Used for portability.
     * Accepts pointers to dynamically allocated const data.
     * Will not call free(3) if the pointer is NULL.
     * Sets the pointer to NULL on completion.
     *
     * Use xfree() if the pointer does not need to be set afterward.
     *
     * Define failure_notify to receive error message.
     * otherwise perror() is used to display it.
     */
#define safe_free(x)    while ((x)) { free_const((x)); (x) = NULL; }

#ifdef __cplusplus
}
#endif

#if XMALLOC_STATISTICS
extern void malloc_statistics(void (*func) (int, int, int, void *), void *data);
#endif

#endif /* _SQUID_COMPAT_XALLOC_H */