Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl-7.19.0 / lib / memdebug.h
blob0912e6fe0dd00042581b174d40a26287998f7445
1 #ifdef CURLDEBUG
2 #ifndef _CURL_MEDEBUG_H
3 #define _CURL_MEDEBUG_H
4 /***************************************************************************
5 * _ _ ____ _
6 * Project ___| | | | _ \| |
7 * / __| | | | |_) | |
8 * | (__| |_| | _ <| |___
9 * \___|\___/|_| \_\_____|
11 * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
13 * This software is licensed as described in the file COPYING, which
14 * you should have received as part of this distribution. The terms
15 * are also available at http://curl.haxx.se/docs/copyright.html.
17 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
18 * copies of the Software, and permit persons to whom the Software is
19 * furnished to do so, under the terms of the COPYING file.
21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 * KIND, either express or implied.
24 * $Id: memdebug.h,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
25 ***************************************************************************/
28 * CAUTION: this header is designed to work when included by the app-side
29 * as well as the library. Do not mix with library internals!
32 #include "setup.h"
34 #include <curl/curl.h>
36 #ifdef HAVE_SYS_TYPES_H
37 #include <sys/types.h>
38 #endif
40 #ifdef HAVE_SYS_SOCKET_H
41 #include <sys/socket.h>
42 #endif
43 #include <stdio.h>
44 #ifdef HAVE_MEMORY_H
45 #include <memory.h>
46 #endif
48 #define logfile curl_debuglogfile
50 extern FILE *logfile;
52 /* memory functions */
53 CURL_EXTERN void *curl_domalloc(size_t size, int line, const char *source);
54 CURL_EXTERN void *curl_docalloc(size_t elements, size_t size, int line, const char *source);
55 CURL_EXTERN void *curl_dorealloc(void *ptr, size_t size, int line, const char *source);
56 CURL_EXTERN void curl_dofree(void *ptr, int line, const char *source);
57 CURL_EXTERN char *curl_dostrdup(const char *str, int line, const char *source);
58 CURL_EXTERN void curl_memdebug(const char *logname);
59 CURL_EXTERN void curl_memlimit(long limit);
61 /* file descriptor manipulators */
62 CURL_EXTERN int curl_socket(int domain, int type, int protocol, int line , const char *);
63 CURL_EXTERN int curl_sclose(int sockfd, int, const char *source);
64 CURL_EXTERN int curl_accept(int s, void *addr, void *addrlen,
65 int line, const char *source);
67 /* FILE functions */
68 CURL_EXTERN FILE *curl_fopen(const char *file, const char *mode, int line,
69 const char *source);
70 CURL_EXTERN FILE *curl_fdopen(int filedes, const char *mode, int line,
71 const char *source);
72 CURL_EXTERN int curl_fclose(FILE *file, int line, const char *source);
74 #ifndef MEMDEBUG_NODEFINES
76 /* Set this symbol on the command-line, recompile all lib-sources */
77 #undef strdup
78 #define strdup(ptr) curl_dostrdup(ptr, __LINE__, __FILE__)
79 #define malloc(size) curl_domalloc(size, __LINE__, __FILE__)
80 #define calloc(nbelem,size) curl_docalloc(nbelem, size, __LINE__, __FILE__)
81 #define realloc(ptr,size) curl_dorealloc(ptr, size, __LINE__, __FILE__)
82 #define free(ptr) curl_dofree(ptr, __LINE__, __FILE__)
84 #define socket(domain,type,protocol)\
85 curl_socket(domain,type,protocol,__LINE__,__FILE__)
86 #undef accept /* for those with accept as a macro */
87 #define accept(sock,addr,len)\
88 curl_accept(sock,addr,len,__LINE__,__FILE__)
90 #if defined(getaddrinfo) && defined(__osf__)
91 /* OSF/1 and Tru64 have getaddrinfo as a define already, so we cannot define
92 our macro as for other platforms. Instead, we redefine the new name they
93 define getaddrinfo to become! */
94 #define ogetaddrinfo(host,serv,hint,res) \
95 curl_dogetaddrinfo(host,serv,hint,res,__LINE__,__FILE__)
96 #else
97 #undef getaddrinfo
98 #define getaddrinfo(host,serv,hint,res) \
99 curl_dogetaddrinfo(host,serv,hint,res,__LINE__,__FILE__)
100 #endif
102 #ifdef HAVE_GETNAMEINFO
103 #undef getnameinfo
104 #define getnameinfo(sa,salen,host,hostlen,serv,servlen,flags) \
105 curl_dogetnameinfo(sa,salen,host,hostlen,serv,servlen,flags, __LINE__, \
106 __FILE__)
107 #endif
109 #undef freeaddrinfo
110 #define freeaddrinfo(data) \
111 curl_dofreeaddrinfo(data,__LINE__,__FILE__)
113 /* sclose is probably already defined, redefine it! */
114 #undef sclose
115 #define sclose(sockfd) curl_sclose(sockfd,__LINE__,__FILE__)
116 /* ares-adjusted define: */
117 #undef closesocket
118 #define closesocket(sockfd) curl_sclose(sockfd,__LINE__,__FILE__)
120 #undef fopen
121 #define fopen(file,mode) curl_fopen(file,mode,__LINE__,__FILE__)
122 #undef fdopen
123 #define fdopen(file,mode) curl_fdopen(file,mode,__LINE__,__FILE__)
124 #define fclose(file) curl_fclose(file,__LINE__,__FILE__)
126 #endif /* MEMDEBUG_NODEFINES */
128 #endif /* _CURL_MEDEBUG_H */
129 #endif /* CURLDEBUG */