blob: aed8e8083f039fac5aa4631e5e00627ad9f6dfc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
.TH "inotify-cxx.cpp" 3 "9 Dec 2009" "Version 0.7.3" "inotify-cxx" \" -*- nroff -*-
.ad l
.nh
.SH NAME
inotify-cxx.cpp \- inotify C++ interface implementation
.PP
.SH SYNOPSIS
.br
.PP
\fC#include <errno.h>\fP
.br
\fC#include <unistd.h>\fP
.br
\fC#include <fcntl.h>\fP
.br
\fC#include <fstream>\fP
.br
\fC#include <sys/syscall.h>\fP
.br
\fC#include <sys/inotify-syscalls.h>\fP
.br
\fC#include 'inotify-cxx.h'\fP
.br
.SS "Defines"
.in +1c
.ti -1c
.RI "#define \fBPROCFS_INOTIFY_BASE\fP '/proc/sys/fs/inotify/'"
.br
.RI "\fIprocfs inotify base path \fP"
.ti -1c
.RI "#define \fBDUMP_SEP\fP"
.br
.RI "\fIdump separator (between particular entries) \fP"
.in -1c
.SH "Detailed Description"
.PP
inotify C++ interface implementation
inotify C++ interface
.PP
Copyright (C) 2006, 2007, 2009 Lukas Jelinek <lukas@aiken.cz>
.PP
This program is free software; you can redistribute it and/or modify it under the terms of one of the following licenses:
.PP
.PD 0
.IP "\(bu" 2
1. X11-style license (see LICENSE-X11)
.IP "\(bu" 2
2. GNU Lesser General Public License, version 2.1 (see LICENSE-LGPL)
.IP "\(bu" 2
3. GNU General Public License, version 2 (see LICENSE-GPL)
.PP
If you want to help with choosing the best license for you, please visit http://www.gnu.org/licenses/license-list.html.
.PP
Credits: Mike Frysinger (cleanup of includes)
.SH "Define Documentation"
.PP
.SS "#define DUMP_SEP"
.PP
\fBValue:\fP
.PP
.nf
({ \
if (!rStr.empty()) { \
rStr.append(','); \
} \
})
.fi
dump separator (between particular entries)
.PP
.SS "#define PROCFS_INOTIFY_BASE '/proc/sys/fs/inotify/'"
.PP
procfs inotify base path
.PP
.SH "Author"
.PP
Generated automatically by Doxygen for inotify-cxx from the source code.
|