rx: Remove RX_CALL_BUSY
[openafs.git] / src / WINNT / kfw / inc / netidmgr / perfstat.h
1 /*
2  * Copyright (c) 2005 Massachusetts Institute of Technology
3  *
4  * Permission is hereby granted, free of charge, to any person
5  * obtaining a copy of this software and associated documentation
6  * files (the "Software"), to deal in the Software without
7  * restriction, including without limitation the rights to use, copy,
8  * modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is
10  * furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be
13  * included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24
25 /* $Id$ */
26
27 #ifndef __KHIMAIRA_PERFSTAT_H
28 #define __KHIMAIRA_PERFSTAT_H
29
30 #include<khdefs.h>
31
32 #ifdef DEBUG
33 #define PMALLOC(s) perf_malloc(__FILE__,__LINE__,s)
34 #define PCALLOC(n,s) perf_calloc(__FILE__,__LINE__,n,s)
35 #define PREALLOC(d,s) perf_realloc(__FILE__,__LINE__,d,s)
36 #define PFREE(p)   perf_free(p)
37 #define PDUMP(f)   perf_dump(f)
38 #define PWCSDUP(s) perf_wcsdup(__FILE__,__LINE__,s)
39 #define PSTRDUP(s) perf_strdup(__FILE__,__LINE__,s)
40 #else
41 #define PMALLOC(s) malloc(s)
42 #define PCALLOC(n,s) calloc(n,s)
43 #define PREALLOC(d,s) realloc(d,s)
44 #define PFREE(p)   free(p)
45 #define PDUMP(f)   ((void) 0)
46 #define PWCSDUP(s) wcsdup(s)
47 #define PSTRDUP(s) strdup(s)
48 #endif
49
50 KHMEXP void *
51 perf_malloc(char * file, int line, size_t s);
52
53 KHMEXP void *
54 perf_realloc(char * file, int line, void * data, size_t s);
55
56 KHMEXP void
57 perf_free  (void * b);
58
59 KHMEXP void
60 perf_dump  (char * filename);
61
62 KHMEXP wchar_t *
63 perf_wcsdup(char * file, int line, const wchar_t * str);
64
65 KHMEXP char *
66 perf_strdup(char * file, int line, const char * str);
67
68 KHMEXP void *
69 perf_calloc(char * file, int line, size_t num, size_t size);
70
71 #endif