Add hidden attribute to some common functions
authorDavid Goulet <dgoulet@efficios.com>
Wed, 28 May 2014 14:56:12 +0000 (10:56 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Wed, 28 May 2014 14:56:12 +0000 (10:56 -0400)
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/common/config/ini.c
src/common/error.c

index 7462aeb35d224a2e414dedbafd5918026e31113e..4369a32f93bd3317a9e6d9d08286f6d2d469bbb9 100644 (file)
@@ -87,6 +87,7 @@ static char* strncpy0(char* dest, const char* src, size_t size)
 }
 
 /* See documentation in header file. */
+LTTNG_HIDDEN
 int ini_parse_file(FILE* file, ini_entry_handler handler, void* user)
 {
        /* Uses a fair bit of stack (use heap instead if you need to) */
@@ -199,6 +200,7 @@ int ini_parse_file(FILE* file, ini_entry_handler handler, void* user)
 }
 
 /* See documentation in header file. */
+LTTNG_HIDDEN
 int ini_parse(const char* filename, ini_entry_handler handler, void* user)
 {
        FILE* file;
index 93b69843db7c1cd7984216d6c013dcd84939f5be..418fc47ab41aecc57d24efe971fff9fc697f5e0a 100644 (file)
@@ -29,6 +29,7 @@
 /* TLS variable that contains the time of one single log entry. */
 DEFINE_URCU_TLS(struct log_time, error_log_time);
 
+LTTNG_HIDDEN
 const char *log_add_time(void)
 {
        int ret;
This page took 0.026791 seconds and 5 git commands to generate.