X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Ffd-tracker%2Ffd-tracker.h;h=5c9810749371071000437c9e49b5e2d2f33df5f3;hb=b66cbf1731486ab4dc7e0b2e1c3fa05cc5360c19;hp=2ed385a2a0e4fc329ef833ff5e75dd6e39b53ffe;hpb=f7c3ffd79ddcece895eb0de616001d549aced5fc;p=lttng-tools.git diff --git a/src/common/fd-tracker/fd-tracker.h b/src/common/fd-tracker/fd-tracker.h index 2ed385a2a..5c9810749 100644 --- a/src/common/fd-tracker/fd-tracker.h +++ b/src/common/fd-tracker/fd-tracker.h @@ -1,24 +1,15 @@ /* - * 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. */ #ifndef FD_TRACKER_H #define FD_TRACKER_H #include +#include #include #include @@ -112,7 +103,7 @@ struct fs_handle *fd_tracker_open_fs_handle(struct fd_tracker *tracker, * negative tracker-specific codes may be returned: * - ENOMEM: allocation of a new entry failed, * - EMFILE: too many unsuspendable fds are opened and the tracker can't - * accomodate the request for a new unsuspendable entry. + * accommodates the request for a new unsuspendable entry. */ int fd_tracker_open_unsuspendable_fd(struct fd_tracker *tracker, int *out_fds, @@ -147,46 +138,4 @@ int fd_tracker_close_unsuspendable_fd(struct fd_tracker *tracker, */ void fd_tracker_log(struct fd_tracker *tracker); -/* - * Marks the handle as the most recently used and marks the 'fd' as - * "in-use". This prevents the tracker from recycling the underlying - * file descriptor while it is actively being used by a thread. - * - * Don't forget that the tracker may be initiating an fd 'suspension' - * from another thread as the need to free an fd slot may arise from any - * thread within the daemon. - * - * Note that a restorable fd should never be held for longer than - * strictly necessary (e.g. the duration of a syscall()). - * - * Returns the fd on success, otherwise a negative value may be returned - * if the restoration of the fd failed. - */ -int fs_handle_get_fd(struct fs_handle *handle); - -/* - * Used by the application to signify that it is no longer using the - * underlying fd and that it may be suspended. - */ -void fs_handle_put_fd(struct fs_handle *handle); - -/* - * Unlink the file associated to an fs_handle. Note that the unlink - * operation will not be performed immediately. It will only be performed - * once all references to the underlying file (through other fs_handle objects) - * have been released. - * - * However, note that the file will be renamed so as to provide the observable - * effect of an unlink(), that is removing a name from the filesystem. - * - * Returns 0 on success, otherwise a negative value will be returned - * if the operation failed. - */ -int fs_handle_unlink(struct fs_handle *handle); - -/* - * Frees the handle and discards the underlying fd. - */ -int fs_handle_close(struct fs_handle *handle); - #endif /* FD_TRACKER_H */