Move to kernel style SPDX license identifiers
[lttng-ust.git] / include / share.h
index 4abd7b15f8c1678cbeeb97823731ad9728706270..28a4a056c72728df6dd8ce262af3d283f8269224 100644 (file)
@@ -1,23 +1,22 @@
-#ifndef _LTTNG_SHARE_H
-#define _LTTNG_SHARE_H
-
 /*
- * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
+ * SPDX-License-Identifier: MIT
  *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
+ * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  */
 
+#ifndef _LTTNG_SHARE_H
+#define _LTTNG_SHARE_H
+
 #include <stdlib.h>
+#include <sys/uio.h>
+
+#include "helper.h"
 
+/* Should be hidden but would break the ABI */
 ssize_t patient_write(int fd, const void *buf, size_t count);
+LTTNG_HIDDEN
+ssize_t patient_writev(int fd, struct iovec *iov, int iovcnt);
+/* Should be hidden but would break the ABI */
 ssize_t patient_send(int fd, const void *buf, size_t count, int flags);
 
 #endif /* _LTTNG_SHARE_H */
This page took 0.023085 seconds and 4 git commands to generate.