Copy an ACL from user space to system space
#include <sys/acl.h> acl_t acl_copy_int( const void *buf_p );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The acl_copy_int() function copies an access control list from user-managed space to system-managed space. When you're finished with the ACL, you should call acl_free() to release it.
A pointer to the ACL in working storage, or NULL if an error occurred (errno is set).
This function is based on the withdrawn POSIX draft P1003.1e.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |