liblttng-ctl: use export list to define exported symbols
[lttng-tools.git] / src / common / fs-handle.c
index 46d9d7de5d322f2f82940c72c8eef2619b40e0ad..bed0010e76d9f850b5f88e40035f5ae0099ca59f 100644 (file)
@@ -9,31 +9,26 @@
 #include <common/fs-handle.h>
 #include <common/readwrite.h>
 
-LTTNG_HIDDEN
 int fs_handle_get_fd(struct fs_handle *handle)
 {
        return handle->get_fd(handle);
 }
 
-LTTNG_HIDDEN
 void fs_handle_put_fd(struct fs_handle *handle)
 {
        return handle->put_fd(handle);
 }
 
-LTTNG_HIDDEN
 int fs_handle_unlink(struct fs_handle *handle)
 {
        return handle->unlink(handle);
 }
 
-LTTNG_HIDDEN
 int fs_handle_close(struct fs_handle *handle)
 {
        return handle->close(handle);
 }
 
-LTTNG_HIDDEN
 ssize_t fs_handle_read(struct fs_handle *handle, void *buf, size_t count)
 {
        ssize_t ret;
@@ -50,7 +45,6 @@ end:
        return ret;
 }
 
-LTTNG_HIDDEN
 ssize_t fs_handle_write(struct fs_handle *handle, const void *buf, size_t count)
 {
        ssize_t ret;
@@ -67,7 +61,6 @@ end:
        return ret;
 }
 
-LTTNG_HIDDEN
 int fs_handle_truncate(struct fs_handle *handle, off_t offset)
 {
        int ret;
@@ -84,7 +77,6 @@ end:
        return ret;
 }
 
-LTTNG_HIDDEN
 off_t fs_handle_seek(struct fs_handle *handle, off_t offset, int whence)
 {
        off_t ret;
This page took 0.023657 seconds and 4 git commands to generate.