X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=snprintf%2Fpatient_write.c;h=5a7fed43165ed46b4782b7844d9735d6853eb8ce;hb=aab8b172425eb52f2cd5bd71ce03f8a5624f83df;hp=aa59ba1457d92ece99df4ac4daa7acc001d31e12;hpb=9fe043d73a3e2112f859ce1fa489021a96efecc9;p=lttng-ust.git diff --git a/snprintf/patient_write.c b/snprintf/patient_write.c index aa59ba14..5a7fed43 100644 --- a/snprintf/patient_write.c +++ b/snprintf/patient_write.c @@ -1,20 +1,8 @@ /* - * Copyright (C) 2009 Pierre-Marc Fournier - * Copyright (C) 2011 Mathieu Desnoyers + * 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 */ #include @@ -31,13 +19,13 @@ #include -#include +#include /* * 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;