summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2012-05-21 18:24:59 -0400
committerPaul Moore <pmoore@redhat.com>2012-05-22 11:18:57 -0400
commit91ccc57d1fdd6cf4f48b94f77b0037914cd8ca1d (patch)
tree1ef7854583d5ca523104db048e08ce4c20ffe3cb /doc
parentccda892631e1e3edd226f410ca32f0d2696d03ee (diff)
downloadlibseccomp-91ccc57d1fdd6cf4f48b94f77b0037914cd8ca1d.tar.gz
doc: fix the manpage comments
Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/man/man3/seccomp_attr_set.332
-rw-r--r--doc/man/man3/seccomp_export_bpf.332
-rw-r--r--doc/man/man3/seccomp_init.332
-rw-r--r--doc/man/man3/seccomp_load.332
-rw-r--r--doc/man/man3/seccomp_release.332
-rw-r--r--doc/man/man3/seccomp_rule_add.332
-rw-r--r--doc/man/man3/seccomp_syscall_priority.332
7 files changed, 112 insertions, 112 deletions
diff --git a/doc/man/man3/seccomp_attr_set.3 b/doc/man/man3/seccomp_attr_set.3
index d5da73f..3cbd513 100644
--- a/doc/man/man3/seccomp_attr_set.3
+++ b/doc/man/man3/seccomp_attr_set.3
@@ -1,11 +1,11 @@
.TH "seccomp_attr_set" 3 "16 April 2012" "paul@paul-moore.com" "libseccomp Documentation"
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NAME
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
seccomp_attr_set, seccomp_attr_get \- Manage the seccomp filter attributes
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SYNOPSIS
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
.B #include <seccomp.h>
.sp
@@ -14,9 +14,9 @@ seccomp_attr_set, seccomp_attr_get \- Manage the seccomp filter attributes
.BI "int seccomp_attr_set(enum scmp_filter_attr " attr ", uint32_t " value ");"
.BI "int seccomp_attr_get(enum scmp_filter_attr " attr ", uint32_t *" value ");"
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH DESCRIPTION
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
The
.BR seccomp_attr_set ()
@@ -55,13 +55,13 @@ loading the seccomp filter into the kernel. If set to off (
is not set. Defaults to on (
.I value
== 1).
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH RETURN VALUE
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Returns zero on success, negative errno values on failure.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH EXAMPLES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
#include <seccomp.h>
@@ -86,9 +86,9 @@ out:
return -rc;
}
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NOTES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
While the seccomp filter can be generated independent of the kernel, kernel
support is required to load and enforce the seccomp filter generated by
@@ -98,13 +98,13 @@ The libseccomp project site, with more information and the source code
repository, can be found at http://libseccomp.sf.net. This library is currently
under development, please report any bugs at the project site or directly to
the author.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH AUTHOR
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Paul Moore <paul@paul-moore.com>
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SEE ALSO
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.BR seccomp_init (3),
.BR seccomp_reset (3),
.BR seccomp_load (3)
diff --git a/doc/man/man3/seccomp_export_bpf.3 b/doc/man/man3/seccomp_export_bpf.3
index 0354227..33b5344 100644
--- a/doc/man/man3/seccomp_export_bpf.3
+++ b/doc/man/man3/seccomp_export_bpf.3
@@ -1,20 +1,20 @@
.TH "seccomp_export_bpf" 3 "15 April 2012" "paul@paul-moore.com" "libseccomp Documentation"
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NAME
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
seccomp_export_bpf, seccomp_export_pfc \- Export the seccomp filter
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SYNOPSIS
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
.B #include <seccomp.h>
.sp
.BI "int seccomp_export_bpf(int " fd ");"
.BI "int seccomp_export_pfc(int " fd ");"
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH DESCRIPTION
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
The
.BR seccomp_export_bpf ()
@@ -33,13 +33,13 @@ file descriptor.
While the two output formats are guaranteed to be functionally equivalent for
the given seccomp filter configuration, the filter instructions, and their
ordering, are not guaranteed to be the same in both the BPF and PFC formats.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH RETURN VALUE
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Returns zero on success, negative errno values on failure.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH EXAMPLES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
#include <seccomp.h>
@@ -74,9 +74,9 @@ out:
return -rc;
}
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NOTES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
While the seccomp filter can be generated independent of the kernel, kernel
support is required to load and enforce the seccomp filter generated by
@@ -86,13 +86,13 @@ The libseccomp project site, with more information and the source code
repository, can be found at http://libseccomp.sf.net. This library is currently
under development, please report any bugs at the project site or directly to
the author.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH AUTHOR
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Paul Moore <paul@paul-moore.com>
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SEE ALSO
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.BR seccomp_init (3),
.BR seccomp_release (3)
diff --git a/doc/man/man3/seccomp_init.3 b/doc/man/man3/seccomp_init.3
index 36211b9..69a6800 100644
--- a/doc/man/man3/seccomp_init.3
+++ b/doc/man/man3/seccomp_init.3
@@ -1,20 +1,20 @@
.TH "seccomp_init" 3 "5 April 2012" "paul@paul-moore.com" "libseccomp Documentation"
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NAME
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
seccomp_init, seccomp_reset \- Initialize the seccomp filter state
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SYNOPSIS
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
.B #include <seccomp.h>
.sp
.BI "int seccomp_init(uint32_t " def_action ");"
.BI "int seccomp_reset(uint32_t " def_action ");"
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH DESCRIPTION
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
The
.BR seccomp_init ()
@@ -73,13 +73,13 @@ option.
.B SCMP_ACT_ALLOW
The seccomp filter will have no effect on the process calling the syscall if it
does not match any of the configured seccomp filter rules.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH RETURN VALUE
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Returns zero on success, negative errno values on failure.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH EXAMPLES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
#include <seccomp.h>
@@ -104,9 +104,9 @@ out:
return -rc;
}
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NOTES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
While the seccomp filter can be generated independent of the kernel, kernel
support is required to load and enforce the seccomp filter generated by
@@ -116,12 +116,12 @@ The libseccomp project site, with more information and the source code
repository, can be found at http://libseccomp.sf.net. This library is currently
under development, please report any bugs at the project site or directly to
the author.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH AUTHOR
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Paul Moore <paul@paul-moore.com>
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SEE ALSO
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.BR seccomp_release (3)
diff --git a/doc/man/man3/seccomp_load.3 b/doc/man/man3/seccomp_load.3
index 45ac6e1..8a88ba3 100644
--- a/doc/man/man3/seccomp_load.3
+++ b/doc/man/man3/seccomp_load.3
@@ -1,29 +1,29 @@
.TH "seccomp_load" 3 "5 April 2012" "paul@paul-moore.com" "libseccomp Documentation"
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NAME
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
seccomp_load \- Load the current seccomp filter into the kernel
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SYNOPSIS
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
.B #include <seccomp.h>
.sp
.BI "int seccomp_load(void);"
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH DESCRIPTION
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
Loads the currently configured seccomp filter into the kernel; if the function
succeeds the new seccomp filter will be active when the function returns.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH RETURN VALUE
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Returns zero on success, negative errno values on failure.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH EXAMPLES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
#include <seccomp.h>
@@ -48,9 +48,9 @@ out:
return -rc;
}
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NOTES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
While the seccomp filter can be generated independent of the kernel, kernel
support is required to load and enforce the seccomp filter generated by
@@ -60,13 +60,13 @@ The libseccomp project site, with more information and the source code
repository, can be found at http://libseccomp.sf.net. This library is currently
under development, please report any bugs at the project site or directly to
the author.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH AUTHOR
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Paul Moore <paul@paul-moore.com>
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SEE ALSO
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.BR seccomp_init (3),
.BR seccomp_reset (3),
.BR seccomp_release (3),
diff --git a/doc/man/man3/seccomp_release.3 b/doc/man/man3/seccomp_release.3
index 22ecfa0..749770d 100644
--- a/doc/man/man3/seccomp_release.3
+++ b/doc/man/man3/seccomp_release.3
@@ -1,19 +1,19 @@
.TH "seccomp_release" 3 "5 April 2012" "paul@paul-moore.com" "libseccomp Documentation"
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NAME
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
seccomp_release \- Release the seccomp filter state
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SYNOPSIS
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
.B #include <seccomp.h>
.sp
.BI "void seccomp_release(void);"
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH DESCRIPTION
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
Releases the internal seccomp filter state initialized by
.BR seccomp_init (3)
@@ -21,13 +21,13 @@ or
.BR seccomp_reset (3)
and frees any memory associated with the currently configured seccomp filter.
Any seccomp filters loaded into the kernel are not affected.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH RETURN VALUE
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Does not return a value.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH EXAMPLES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
#include <seccomp.h>
@@ -45,9 +45,9 @@ int main(int argc, char *argv[])
return 0;
}
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NOTES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
While the seccomp filter can be generated independent of the kernel, kernel
support is required to load and enforce the seccomp filter generated by
@@ -57,13 +57,13 @@ The libseccomp project site, with more information and the source code
repository, can be found at http://libseccomp.sf.net. This library is currently
under development, please report any bugs at the project site or directly to
the author.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH AUTHOR
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Paul Moore <paul@paul-moore.com>
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SEE ALSO
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.BR seccomp_init (3),
.BR seccomp_reset (3)
diff --git a/doc/man/man3/seccomp_rule_add.3 b/doc/man/man3/seccomp_rule_add.3
index 3e1de78..7de90b3 100644
--- a/doc/man/man3/seccomp_rule_add.3
+++ b/doc/man/man3/seccomp_rule_add.3
@@ -1,11 +1,11 @@
.TH "seccomp_rule_add" 3 "5 April 2012" "paul@paul-moore.com" "libseccomp Documentation"
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NAME
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
seccomp_rule_add, seccomp_rule_add_exact \- Add a seccomp filter rule
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SYNOPSIS
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
.B #include <seccomp.h>
.sp
@@ -25,9 +25,9 @@ seccomp_rule_add, seccomp_rule_add_exact \- Add a seccomp filter rule
.BI "int seccomp_rule_add_exact(uint32_t " action ","
.BI " int " syscall ", unsigned int " arg_cnt ", " ... ");"
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH DESCRIPTION
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
The
.BR seccomp_rule_add ()
@@ -179,17 +179,17 @@ SCMP_CMP(
,
.I datum
)
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH RETURN VALUE
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
The
.BR seccomp_rule_add ()
and
.BR seccomp_rule_add_exact ()
functions return zero on success, negative errno values on failure.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH EXAMPLES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
#include <fcntl.h>
#include <seccomp.h>
@@ -241,9 +241,9 @@ out:
return -rc;
}
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NOTES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
While the seccomp filter can be generated independent of the kernel, kernel
support is required to load and enforce the seccomp filter generated by
@@ -253,12 +253,12 @@ The libseccomp project site, with more information and the source code
repository, can be found at http://libseccomp.sf.net. This library is currently
under development, please report any bugs at the project site or directly to
the author.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH AUTHOR
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Paul Moore <paul@paul-moore.com>
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SEE ALSO
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.BR seccomp_syscall_priority (3),
.BR seccomp_load (3)
diff --git a/doc/man/man3/seccomp_syscall_priority.3 b/doc/man/man3/seccomp_syscall_priority.3
index a5d85a5..4337484 100644
--- a/doc/man/man3/seccomp_syscall_priority.3
+++ b/doc/man/man3/seccomp_syscall_priority.3
@@ -1,11 +1,11 @@
.TH "seccomp_syscall_priority" 3 "5 April 2012" "paul@paul-moore.com" "libseccomp Documentation"
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NAME
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
seccomp_syscall_priority \- Prioritize syscalls in the seccomp filter
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SYNOPSIS
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
.B #include <seccomp.h>
.sp
@@ -13,9 +13,9 @@ seccomp_syscall_priority \- Prioritize syscalls in the seccomp filter
.sp
.BI "int seccomp_syscall_priority(int " syscall ", uint8_t " priority ");"
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH DESCRIPTION
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
The
.BR seccomp_syscall_priority ()
@@ -39,9 +39,9 @@ The
.I priority
parameter takes an 8-bit value ranging from 0 - 255; a higher value represents
a higher priority.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH RETURN VALUE
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
The
.BR seccomp_syscall_priority ()
function returns zero on success, negative errno values on failure. The
@@ -50,9 +50,9 @@ macro returns a value suitable for use as the
.I syscall
value in
.BR seccomp_syscall_priority ().
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH EXAMPLES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.nf
#include <seccomp.h>
@@ -77,9 +77,9 @@ out:
return -rc;
}
.fi
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH NOTES
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.P
While the seccomp filter can be generated independent of the kernel, kernel
support is required to load and enforce the seccomp filter generated by
@@ -89,12 +89,12 @@ The libseccomp project site, with more information and the source code
repository, can be found at http://libseccomp.sf.net. This library is currently
under development, please report any bugs at the project site or directly to
the author.
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH AUTHOR
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
Paul Moore <paul@paul-moore.com>
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.SH SEE ALSO
-.//////////////////////////////////////////////////////////////////////////////
+.\" //////////////////////////////////////////////////////////////////////////
.BR seccomp_rule_add (3),
.BR seccomp_rule_add_exact (3)