mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
picky gcc versions... sigh.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@84330 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -88,17 +88,21 @@ int __ast_str_helper(struct ast_str **buf, size_t max_len,
|
||||
return res;
|
||||
}
|
||||
|
||||
void ast_store_lock_info(enum ast_lock_type type, const char *filename,
|
||||
int line_num, const char *func, const char *lock_name, void *lock_addr);
|
||||
void ast_store_lock_info(enum ast_lock_type type, const char *filename,
|
||||
int line_num, const char *func, const char *lock_name, void *lock_addr)
|
||||
{
|
||||
/* not a lot to do in a standalone w/o threading! */
|
||||
}
|
||||
|
||||
void ast_mark_lock_acquired(void);
|
||||
void ast_mark_lock_acquired(void)
|
||||
{
|
||||
/* not a lot to do in a standalone w/o threading! */
|
||||
}
|
||||
|
||||
void ast_remove_lock_info(void *lock_addr);
|
||||
void ast_remove_lock_info(void *lock_addr)
|
||||
{
|
||||
/* not a lot to do in a standalone w/o threading! */
|
||||
|
Reference in New Issue
Block a user