liblttng-ctl: use export list to define exported symbols
[lttng-tools.git] / src / common / fd-handle.h
index 4463f30055ee0996146220ac4095a513e1bc5813..dab9e2bfaccab4017502f079aba83f5b2fe27e04 100644 (file)
 struct fd_handle;
 
 /* Create a file descriptor handle. */
 struct fd_handle;
 
 /* Create a file descriptor handle. */
-LTTNG_HIDDEN
 struct fd_handle *fd_handle_create(int fd);
 
 /* Acquire reference to a file descriptor handle. */
 struct fd_handle *fd_handle_create(int fd);
 
 /* Acquire reference to a file descriptor handle. */
-LTTNG_HIDDEN
 void fd_handle_get(struct fd_handle *handle);
 
 /* Release reference to a file descriptor handle. */
 void fd_handle_get(struct fd_handle *handle);
 
 /* Release reference to a file descriptor handle. */
-LTTNG_HIDDEN
 void fd_handle_put(struct fd_handle *handle);
 
 /*
 void fd_handle_put(struct fd_handle *handle);
 
 /*
@@ -35,7 +32,6 @@ void fd_handle_put(struct fd_handle *handle);
  *
  * This function can't fail.
  */
  *
  * This function can't fail.
  */
-LTTNG_HIDDEN
 int fd_handle_get_fd(struct fd_handle *handle);
 
 /*
 int fd_handle_get_fd(struct fd_handle *handle);
 
 /*
@@ -46,7 +42,6 @@ int fd_handle_get_fd(struct fd_handle *handle);
  * the system documentation for the semantics of dup() for this particular file
  * descriptor type.
  */
  * the system documentation for the semantics of dup() for this particular file
  * descriptor type.
  */
-LTTNG_HIDDEN
 struct fd_handle *fd_handle_copy(const struct fd_handle *handle);
 
 #endif /* FS_HANDLE_H */
 struct fd_handle *fd_handle_copy(const struct fd_handle *handle);
 
 #endif /* FS_HANDLE_H */
This page took 0.023479 seconds and 4 git commands to generate.