Move to kernel style SPDX license identifiers
[lttng-ust.git] / include / share.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 */
6
7 #ifndef _LTTNG_SHARE_H
8 #define _LTTNG_SHARE_H
9
10 #include <stdlib.h>
11 #include <sys/uio.h>
12
13 #include "helper.h"
14
15 /* Should be hidden but would break the ABI */
16 ssize_t patient_write(int fd, const void *buf, size_t count);
17 LTTNG_HIDDEN
18 ssize_t patient_writev(int fd, struct iovec *iov, int iovcnt);
19 /* Should be hidden but would break the ABI */
20 ssize_t patient_send(int fd, const void *buf, size_t count, int flags);
21
22 #endif /* _LTTNG_SHARE_H */
This page took 0.028931 seconds and 4 git commands to generate.