diff options
Diffstat (limited to 'upstream/debian-bookworm/man2/inotify_rm_watch.2')
-rw-r--r-- | upstream/debian-bookworm/man2/inotify_rm_watch.2 | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/upstream/debian-bookworm/man2/inotify_rm_watch.2 b/upstream/debian-bookworm/man2/inotify_rm_watch.2 new file mode 100644 index 00000000..8d89537b --- /dev/null +++ b/upstream/debian-bookworm/man2/inotify_rm_watch.2 @@ -0,0 +1,60 @@ +.\" Copyright (C) 2005 Robert Love +.\" +.\" SPDX-License-Identifier: GPL-2.0-or-later +.\" +.\" 2005-07-19 Robert Love <rlove@rlove.org> - initial version +.\" 2006-02-07 mtk, minor changes +.\" +.TH inotify_rm_watch 2 2022-10-30 "Linux man-pages 6.03" +.SH NAME +inotify_rm_watch \- remove an existing watch from an inotify instance +.SH LIBRARY +Standard C library +.RI ( libc ", " \-lc ) +.SH SYNOPSIS +.nf +.B #include <sys/inotify.h> +.PP +.BI "int inotify_rm_watch(int " fd ", int " wd ); +.\" Before glibc 2.10, the second argument was types as uint32_t. +.\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=7040 +.fi +.SH DESCRIPTION +.BR inotify_rm_watch () +removes the watch associated with the watch descriptor +.I wd +from the inotify instance associated with the file descriptor +.IR fd . +.PP +Removing a watch causes an +.B IN_IGNORED +event to be generated for this watch descriptor. +(See +.BR inotify (7).) +.SH RETURN VALUE +On success, +.BR inotify_rm_watch () +returns zero. +On error, \-1 is returned and +.I errno +is set to indicate the error. +.SH ERRORS +.TP +.B EBADF +.I fd +is not a valid file descriptor. +.TP +.B EINVAL +The watch descriptor +.I wd +is not valid; or +.I fd +is not an inotify file descriptor. +.SH VERSIONS +Inotify was merged into the 2.6.13 Linux kernel. +.SH STANDARDS +This system call is Linux-specific. +.SH SEE ALSO +.BR inotify_add_watch (2), +.BR inotify_init (2), +.BR inotify (7) |