Skip to content
Snippets Groups Projects
Commit 6b09ce43 authored by Mark Spencer's avatar Mark Spencer
Browse files

Don't redefine ast_mutex_init

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2642 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 584936aa
Branches
Tags
No related merge requests found
......@@ -172,7 +172,6 @@ static inline int ast_mutex_init(ast_mutex_t *t)
pthread_mutexattr_settype(&attr, AST_MUTEX_KIND);
return pthread_mutex_init(t, &attr);
}
#define ast_mutex_init(t) pthread_mutex_init(t, NULL)
#define ast_pthread_mutex_init(t,a) pthread_mutex_init(t,a)
#define ast_mutex_destroy(t) pthread_mutex_destroy(t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment