trigger: generate and add tracer token on registration
[lttng-tools.git] / src / common / fs-handle.h
index e90ba3ca2891582247e1ebe7e8563dd49ceff861..1627f7cfeb122197e346aed58bc7508bd140c899 100644 (file)
@@ -1,24 +1,15 @@
 /*
- * Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ * Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * This library is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as published by the
- * Free Software Foundation; version 2.1 of the License.
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
- * for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this library; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
 #ifndef FS_HANDLE_H
 #define FS_HANDLE_H
 
 #include <common/macros.h>
+#include <stdio.h>
 
 struct fs_handle;
 
@@ -68,4 +59,16 @@ int fs_handle_unlink(struct fs_handle *handle);
 LTTNG_HIDDEN
 int fs_handle_close(struct fs_handle *handle);
 
+LTTNG_HIDDEN
+ssize_t fs_handle_read(struct fs_handle *handle, void *buf, size_t count);
+
+LTTNG_HIDDEN
+ssize_t fs_handle_write(struct fs_handle *handle, const void *buf, size_t count);
+
+LTTNG_HIDDEN
+int fs_handle_truncate(struct fs_handle *handle, off_t offset);
+
+LTTNG_HIDDEN
+off_t fs_handle_seek(struct fs_handle *handle, off_t offset, int whence);
+
 #endif /* FS_HANDLE_H */
This page took 0.02373 seconds and 4 git commands to generate.