X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Ffs-handle.c;fp=src%2Fcommon%2Ffs-handle.c;h=bed0010e76d9f850b5f88e40035f5ae0099ca59f;hp=46d9d7de5d322f2f82940c72c8eef2619b40e0ad;hb=ca806b0b247f89c62ac628a7779ae84049a8c2d7;hpb=a4705d55c62276cb913c64832f383e27aa72668b diff --git a/src/common/fs-handle.c b/src/common/fs-handle.c index 46d9d7de5..bed0010e7 100644 --- a/src/common/fs-handle.c +++ b/src/common/fs-handle.c @@ -9,31 +9,26 @@ #include #include -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;