X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Ffd-tracker%2Futils-poll.c;h=fa957432d01945e397f49c7d0836ba4338182b59;hb=9df6c82a8ea4064f9868028b9fc3412f45adbb0a;hp=b56936a0f54a7c4df614d4dc13aaa693cfd787d1;hpb=184597e3d22331d64e93acab4691670534f218cb;p=lttng-tools.git diff --git a/src/common/fd-tracker/utils-poll.c b/src/common/fd-tracker/utils-poll.c index b56936a0f..fa957432d 100644 --- a/src/common/fd-tracker/utils-poll.c +++ b/src/common/fd-tracker/utils-poll.c @@ -1,18 +1,8 @@ /* - * Copyright (C) 2018 - Jérémie Galarneau + * Copyright (C) 2018 Jérémie Galarneau * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License, version 2 only, as - * published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program 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 General Public License for - * more details. - * - * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -23,14 +13,17 @@ * The epoll variant of the poll compat layer creates an unsuspendable fd which * must be tracked. */ -int fd_tracker_util_poll_create(struct fd_tracker *tracker, const char *name, - struct lttng_poll_event *events, int size, int flags) +int fd_tracker_util_poll_create(struct fd_tracker *tracker, + const char *name, + struct lttng_poll_event *events, + int size, + int flags) { return lttng_poll_create(events, size, flags); } -int fd_tracker_util_poll_clean(struct fd_tracker *tracker, - struct lttng_poll_event *events) +int fd_tracker_util_poll_clean( + struct fd_tracker *tracker, struct lttng_poll_event *events) { lttng_poll_clean(events); return 0;