X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Futils.c;h=a18e906d7f6b303d834482b2b00ce7f93a1fcdf5;hb=90e535ef0d0433d31e805775f85e4d187b1cf82c;hp=d8cb4a60f1574a936fab23bcf3a9535b2875a136;hpb=a187da1ab55a90f95fed8a29ed232b344f0d32b2;p=lttng-tools.git diff --git a/src/common/utils.c b/src/common/utils.c index d8cb4a60f..a18e906d7 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -36,7 +36,7 @@ * /tmp/test1 does, the real path is returned. In normal time, realpath(3) * fails if the end point directory does not exist. */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN char *utils_expand_path(const char *path) { const char *end_path = path; @@ -89,7 +89,7 @@ error: /* * Create a pipe in dst. */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN int utils_create_pipe(int *dst) { int ret; @@ -112,7 +112,7 @@ int utils_create_pipe(int *dst) * Make sure the pipe opened by this function are closed at some point. Use * utils_close_pipe(). */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN int utils_create_pipe_cloexec(int *dst) { int ret, i; @@ -141,7 +141,7 @@ error: /* * Close both read and write side of the pipe. */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN void utils_close_pipe(int *src) { int i, ret; @@ -166,7 +166,7 @@ void utils_close_pipe(int *src) /* * Create a new string using two strings range. */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN char *utils_strdupdelim(const char *begin, const char *end) { char *str; @@ -187,7 +187,7 @@ error: /* * Set CLOEXEC flag to the give file descriptor. */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN int utils_set_fd_cloexec(int fd) { int ret; @@ -210,7 +210,7 @@ end: /* * Create pid file to the given path and filename. */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN int utils_create_pid_file(pid_t pid, const char *filepath) { int ret; @@ -241,7 +241,7 @@ error: * * On success, return 0 else a negative error code. */ -__attribute__((visibility("hidden"))) +LTTNG_HIDDEN int utils_mkdir_recursive(const char *path, mode_t mode) { char *p, tmp[PATH_MAX];