mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
Merged revisions 114051 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r114051 | mmichelson | 2008-04-10 15:59:49 -0500 (Thu, 10 Apr 2008) | 3 lines Fix 1.4 build when LOW_MEMORY is enabled. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114052 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -78,15 +78,18 @@ char ast_config_AST_SYSTEM_NAME[20] = ""; */
|
||||
/* static AST_RWLIST_HEAD_STATIC(acf_root, ast_custom_function); */
|
||||
//extern char ast_config_AST_CONFIG_DIR[PATH_MAX];
|
||||
|
||||
void ast_register_file_version(const char *file, const char *version);
|
||||
void ast_register_file_version(const char *file, const char *version)
|
||||
{
|
||||
}
|
||||
|
||||
void ast_unregister_file_version(const char *file);
|
||||
void ast_unregister_file_version(const char *file)
|
||||
{
|
||||
}
|
||||
#if !defined(LOW_MEMORY)
|
||||
int ast_add_profile(const char *x, uint64_t scale) { return 0;}
|
||||
|
||||
#endif
|
||||
/* Our own version of ast_log, since the expr parser uses it. -- stolen from utils/check_expr.c */
|
||||
void ast_log(int level, const char *file, int line, const char *function, const char *fmt, ...) __attribute__ ((format (printf,5,6)));
|
||||
|
||||
@@ -698,7 +701,7 @@ unsigned int ast_hashtab_hash_contexts(const void *obj)
|
||||
}
|
||||
|
||||
#ifdef DEBUG_THREADS
|
||||
|
||||
#if !defined(LOW_MEMORY)
|
||||
void ast_mark_lock_acquired(void *lock_addr)
|
||||
{
|
||||
}
|
||||
@@ -711,5 +714,5 @@ 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)
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user