File: globals.h

package info (click to toggle)
zmailer 2.99.51.52pre3-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 16,596 kB
  • ctags: 7,422
  • sloc: ansic: 90,470; sh: 3,608; makefile: 2,784; perl: 1,585; python: 115; awk: 22
file content (46 lines) | stat: -rw-r--r-- 1,192 bytes parent folder | download | duplicates (2)
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
/* $Id: globals.h,v 1.1.1.1 1998/02/10 21:01:46 mea Exp $ */
#ifndef __GLOBALS_H__
#define __GLOBALS_H__
/*
 *  Remember to initialize the variable in globals.c if you want, and
 *  provide an alternative short name in globrename.h
 */
#include "globrename.h"

extern size_t _malloc_minchunk;

extern Word *_malloc_rovers[];
extern const short _malloc_binmax;
extern int _malloc_firstbin;
extern int _malloc_lastbin;
extern Word *_malloc_hiword;
extern Word *_malloc_loword;

extern size_t _malloc_sbrkunits;

extern Word *_malloc_mem;

extern int _malloc_tracing;	/* No tracing */
extern FILE *_malloc_statsfile;
extern char _malloc_statsbuf[];

extern int _malloc_leaktrace;

#ifdef PROFILESIZES
extern int _malloc_scount[];
#endif /* PROFILESIZES */

#ifdef DEBUG
/*
 *  0 or 1 means checking all pointers before using them. Reasonably
 *  thorough.  2 means check the entire heap on every call to
 *  malloc/free/realloc/memalign. (the rest call these)
 */
extern int _malloc_debugging;
#endif /* DEBUG */

extern univptr_t (* _malloc_memfunc) proto((size_t));

extern int __m_prblock proto((univptr_t, int, FILE *));

#endif /* __GLOBALS_H__ */ /* Do not add anything after this line */