Commit | Line | Data |
---|---|---|
b728d87e MD |
1 | #ifndef _LTTNG_SHARE_H |
2 | #define _LTTNG_SHARE_H | |
3 | ||
02d9c658 | 4 | /* |
b728d87e | 5 | * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
a09dac63 | 6 | * |
b728d87e MD |
7 | * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED |
8 | * OR IMPLIED. ANY USE IS AT YOUR OWN RISK. | |
a09dac63 | 9 | * |
b728d87e MD |
10 | * Permission is hereby granted to use or copy this program |
11 | * for any purpose, provided the above notices are retained on all copies. | |
12 | * Permission to modify the code and to distribute modified code is granted, | |
13 | * provided the above notices are retained, and a notice that the code was | |
14 | * modified is included with the above copyright notice. | |
8bf5ab2d PMF |
15 | */ |
16 | ||
7f0aeeba MD |
17 | #include <stdlib.h> |
18 | ||
b728d87e MD |
19 | ssize_t patient_write(int fd, const void *buf, size_t count); |
20 | ssize_t patient_send(int fd, const void *buf, size_t count, int flags); | |
2dae156b | 21 | |
b728d87e | 22 | #endif /* _LTTNG_SHARE_H */ |