from small one page howto to huge articles all in one place
 

search text in:





Poll
Which filesystem do you use?






poll results

Last additions:
using iotop to find disk usage hogs

using iotop to find disk usage hogs

words:

887

views:

187677

userrating:

average rating: 1.7 (102 votes) (1=very good 6=terrible)


May 25th. 2007:
Words

486

Views

250635

why adblockers are bad


Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

words:

161

views:

138296

userrating:

average rating: 1.4 (42 votes) (1=very good 6=terrible)


April, 26th. 2006:

Druckversion
You are here: manpages





seccomp_version

Section: libseccomp Documentation (3)
Updated: 18 February 2016
Index Return to Main Contents
 

NAME

seccomp_version - Query the libseccomp version information  

SYNOPSIS

#include <seccomp.h>

struct scmp_version {
unsigned int major;
unsigned int minor;
unsigned int micro;
}

const struct scmp_version *seccomp_version(void);

Link with -lseccomp.
 

DESCRIPTION

The seccomp_version() and seccomp_reset() functions return a pointer to a 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. The caller should not attempt to free the returned scmp_version struct when finished.  

RETURN VALUE

The seccomp_version() function returns a pointer to a scmp_version structure on success, NULL on failure. The caller should not attempt to free the returned structure.  

EXAMPLES

#include <seccomp.h>

int main(int argc, char *argv[])
{
        const struct scmp_version *ver;

        ver = seccomp_version();
        if (ver == NULL)
                goto err;

        /* ... */

        return 0;

err:
        return -1;
}
 

NOTES

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. 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.  

AUTHOR

Paul Moore <paul@paul-moore.com>


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUE
EXAMPLES
NOTES
AUTHOR





Support us on Content Nation
rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 29.0 ms