From aec772a0cdec34611b9ccf391a9e94872676bd44 Mon Sep 17 00:00:00 2001 From: tilghman Date: Thu, 9 Apr 2009 05:12:07 +0000 Subject: Merged revisions 187302 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r187302 | tilghman | 2009-04-08 23:59:05 -0500 (Wed, 08 Apr 2009) | 14 lines Merged revisions 187300-187301 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r187300 | tilghman | 2009-04-08 23:31:38 -0500 (Wed, 08 Apr 2009) | 3 lines Add debugging mode for diagnosing file descriptor leaks. (Related to issue #14625) ........ r187301 | tilghman | 2009-04-08 23:32:40 -0500 (Wed, 08 Apr 2009) | 2 lines Oops, missed this file in the last commit. ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@187303 f38db490-d61c-443f-a65b-d21fe96a405b --- include/asterisk.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'include/asterisk.h') diff --git a/include/asterisk.h b/include/asterisk.h index f159cf375..30a20ee60 100644 --- a/include/asterisk.h +++ b/include/asterisk.h @@ -43,7 +43,36 @@ #define setpriority __PLEASE_USE_ast_set_priority_INSTEAD_OF_setpriority__ #define sched_setscheduler __PLEASE_USE_ast_set_priority_INSTEAD_OF_sched_setscheduler__ +#if defined(DEBUG_FD_LEAKS) && !defined(STANDALONE) && !defined(STANDALONE_AEL) +/* These includes are all about ordering */ +#include +#include +#include +#include +#include +#include + +#define open(a,...) __ast_fdleak_open(__FILE__,__LINE__,__PRETTY_FUNCTION__, a, __VA_ARGS__) +#define pipe(a) __ast_fdleak_pipe(a, __FILE__,__LINE__,__PRETTY_FUNCTION__) +#define socket(a,b,c) __ast_fdleak_socket(a, b, c, __FILE__,__LINE__,__PRETTY_FUNCTION__) +#define close(a) __ast_fdleak_close(a) +#define fopen(a,b) __ast_fdleak_fopen(a, b, __FILE__,__LINE__,__PRETTY_FUNCTION__) +#define fclose(a) __ast_fdleak_fclose(a) +#define dup2(a,b) __ast_fdleak_dup2(a, b, __FILE__,__LINE__,__PRETTY_FUNCTION__) +#define dup(a) __ast_fdleak_dup(a, __FILE__,__LINE__,__PRETTY_FUNCTION__) + +int __ast_fdleak_open(const char *file, int line, const char *func, const char *path, int flags, ...); +int __ast_fdleak_pipe(int *fds, const char *file, int line, const char *func); +int __ast_fdleak_socket(int domain, int type, int protocol, const char *file, int line, const char *func); +int __ast_fdleak_close(int fd); +FILE *__ast_fdleak_fopen(const char *path, const char *mode, const char *file, int line, const char *func); +int __ast_fdleak_fclose(FILE *ptr); +int __ast_fdleak_dup2(int oldfd, int newfd, const char *file, int line, const char *func); +int __ast_fdleak_dup(int oldfd, const char *file, int line, const char *func); +#endif + int ast_set_priority(int); /*!< Provided by asterisk.c */ +int ast_fd_init(void); /*!< Provided by astfd.c */ /*! * \brief Register a function to be executed before Asterisk exits. -- cgit v1.2.3