From e1459ede017479df49030a5a5d0b355aadca075c Mon Sep 17 00:00:00 2001 From: Josh Roberson <josh@asteriasgi.com> Date: Tue, 8 Mar 2005 20:47:30 +0000 Subject: [PATCH] Fix compile of utils.c on *BSD (Bug #3724) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5152 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils.c b/utils.c index ab71677f59..893543c15b 100755 --- a/utils.c +++ b/utils.c @@ -389,7 +389,9 @@ int ast_utils_init(void) return 0; } - +#ifndef __linux__ +#undef pthread_create /* For ast_pthread_create function only */ +#endif /* ! LINUX */ int ast_pthread_create_stack(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data, size_t stacksize) { pthread_attr_t lattr; -- GitLab