consumerd: clean-up: stream attribute accessed without locking stream
[lttng-tools.git] / src / common / readwrite.h
index 39f5a11358b1965fe28f9f52fc249118235b9e85..557ed0a00408b2cf15c2a696b2f75296d421e06e 100644 (file)
  */
 
 #include <unistd.h>
+#include <common/macros.h>
 
 /*
  * lttng_read and lttng_write take care of EINTR and partial read/write.
  * Upon success, they return the "count" received as parameter.
  * They can return a negative value if an error occurs.
  * If a value lower than the requested "count" is returned, it means an
- * error occured.
+ * error occurred.
  * The error can be checked by querying errno.
  */
+LTTNG_HIDDEN
 ssize_t lttng_read(int fd, void *buf, size_t count);
+LTTNG_HIDDEN
 ssize_t lttng_write(int fd, const void *buf, size_t count);
 
 #endif /* LTTNG_COMMON_READWRITE_H */
This page took 0.023439 seconds and 4 git commands to generate.