X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=libseccomp%2Fdoc%2Fman%2Fman3%2Fseccomp_version.3;fp=libseccomp%2Fdoc%2Fman%2Fman3%2Fseccomp_version.3;h=0000000000000000000000000000000000000000;hb=a7f80a138de41255578bc28d034438a295ecbb2e;hp=830fa06837802b1c9e4f95d3b5a4d1f1bc756e74;hpb=a8d04cb21e9ce2cfa37d893162df3e4943d9e480;p=linux-seccomp.git diff --git a/libseccomp/doc/man/man3/seccomp_version.3 b/libseccomp/doc/man/man3/seccomp_version.3 deleted file mode 100644 index 830fa06..0000000 --- a/libseccomp/doc/man/man3/seccomp_version.3 +++ /dev/null @@ -1,87 +0,0 @@ -.TH "seccomp_version" 3 "18 February 2016" "paul@paul-moore.com" "libseccomp Documentation" -.\" ////////////////////////////////////////////////////////////////////////// -.SH NAME -.\" ////////////////////////////////////////////////////////////////////////// -seccomp_version \- Query the libseccomp version information -.\" ////////////////////////////////////////////////////////////////////////// -.SH SYNOPSIS -.\" ////////////////////////////////////////////////////////////////////////// -.nf -.B #include -.sp -.B struct scmp_version { -.B unsigned int major; -.B unsigned int minor; -.B unsigned int micro; -.B } -.sp -.BI "const struct scmp_version *seccomp_version(" void ");" -.sp -Link with \fI\-lseccomp\fP. -.fi -.\" ////////////////////////////////////////////////////////////////////////// -.SH DESCRIPTION -.\" ////////////////////////////////////////////////////////////////////////// -.P -The -.BR seccomp_version () -and -.BR seccomp_reset () -functions return a pointer to a -.B scmp_version -struct which contains the version information of the currently loaded -libseccomp library. This function can be used by applications that need to -verify that they are linked to a specific libseccomp version at runtime. -.P -The caller should not attempt to free the returned -.B scmp_version -struct when finished. -.\" ////////////////////////////////////////////////////////////////////////// -.SH RETURN VALUE -.\" ////////////////////////////////////////////////////////////////////////// -The -.BR seccomp_version () -function returns a pointer to a -.B scmp_version -structure on success, NULL on failure. The caller should not attempt to free -the returned structure. -.\" ////////////////////////////////////////////////////////////////////////// -.SH EXAMPLES -.\" ////////////////////////////////////////////////////////////////////////// -.nf -#include - -int main(int argc, char *argv[]) -{ - const struct scmp_version *ver; - - ver = seccomp_version(); - if (ver == NULL) - goto err; - - /* ... */ - - return 0; - -err: - return \-1; -} -.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 -libseccomp. -.P -The libseccomp project site, with more information and the source code -repository, can be found at https://github.com/seccomp/libseccomp. This tool, -as well as the libseccomp library, is currently under development, please -report any bugs at the project site or directly to the author. -.\" ////////////////////////////////////////////////////////////////////////// -.SH AUTHOR -.\" ////////////////////////////////////////////////////////////////////////// -Paul Moore -.\" ////////////////////////////////////////////////////////////////////////// -