diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2013-11-17 15:05:42 +0100 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-11-19 13:30:39 -0800 |
commit | 5d2439657f7f81f1dcdc45e960c91ce4196ae118 (patch) | |
tree | b1193802a60de983348cac503ec5a5bade70a187 /libglusterfs/src/common-utils.h | |
parent | bf6f49a309f1894073f208b4a97a7baa6ec3e136 (diff) |
NetBSD missing backtrace(3) portability fix
Implement backtrace(3) and backtrace_symbols(3) which do not exist in NetBSD
While there, remove duplicate #include <stdio.h>
BUG: 764655
Change-Id: Iccd695765906e085c3f8fcb670506d4fea68fa39
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/6285
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'libglusterfs/src/common-utils.h')
-rw-r--r-- | libglusterfs/src/common-utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libglusterfs/src/common-utils.h b/libglusterfs/src/common-utils.h index 3c99a4212d0..e762a86eaf4 100644 --- a/libglusterfs/src/common-utils.h +++ b/libglusterfs/src/common-utils.h @@ -590,5 +590,9 @@ void md5_wrapper(const unsigned char *data, size_t len, char *md5); int gf_thread_create (pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg); +#ifdef __NetBSD__ +size_t backtrace(void **, size_t); +char **backtrace_symbols(void *const *, size_t); +#endif #endif /* _COMMON_UTILS_H */ |