Move compat macros in 'lttng/align.h' to a private header
[lttng-ust.git] / snprintf / patient_write.c
index aa59ba1457d92ece99df4ac4daa7acc001d31e12..5a7fed43165ed46b4782b7844d9735d6853eb8ce 100644 (file)
@@ -1,20 +1,8 @@
 /*
- * Copyright (C) 2009  Pierre-Marc Fournier
- * Copyright (C) 2011  Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * SPDX-License-Identifier: LGPL-2.1-or-later
  *
- * 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; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * 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
+ * Copyright (C) 2009 Pierre-Marc Fournier
+ * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  */
 
 #include <stddef.h>
 
 #include <errno.h>
 
-#include <share.h>
+#include <ust-share.h>
 
 /*
  * This write is patient because it restarts if it was incomplete.
  */
 
-ssize_t patient_write(int fd, const void *buf, size_t count)
+ssize_t ust_patient_write(int fd, const void *buf, size_t count)
 {
        const char *bufc = (const char *) buf;
        int result;
@@ -65,7 +53,7 @@ ssize_t patient_write(int fd, const void *buf, size_t count)
  * The `struct iovec *iov` is not `const` because we modify it to support
  * partial writes.
  */
-ssize_t patient_writev(int fd, struct iovec *iov, int iovcnt)
+ssize_t ust_patient_writev(int fd, struct iovec *iov, int iovcnt)
 {
        ssize_t written, total_written = 0;
        int curr_element_idx = 0;
@@ -107,7 +95,7 @@ ssize_t patient_writev(int fd, struct iovec *iov, int iovcnt)
        return total_written;
 }
 
-ssize_t patient_send(int fd, const void *buf, size_t count, int flags)
+ssize_t ust_patient_send(int fd, const void *buf, size_t count, int flags)
 {
        const char *bufc = (const char *) buf;
        int result;
This page took 0.024972 seconds and 4 git commands to generate.