From 207460d09742304941f1a010a89fc2efa46bcb29 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 23 Jul 2012 16:39:44 -0400 Subject: add extended attributes syscalls based on patch by orc and Isaac Dunham, with some fixes. --- include/sys/xattr.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 include/sys/xattr.h (limited to 'include') diff --git a/include/sys/xattr.h b/include/sys/xattr.h new file mode 100644 index 00000000..2801cb85 --- /dev/null +++ b/include/sys/xattr.h @@ -0,0 +1,27 @@ +#ifndef _SYS_XATTR_H +#define _SYS_XATTR_H +#ifdef __cplusplus +extern "C" { +#endif + +#define __NEED_ssize_t +#define __NEED_size_t +#include + +#define XATTR_CREATE 1 +#define XATTR_REPLACE 2 + +ssize_t getxattr(const char *, const char *, void *, size_t); +ssize_t lgetxattr(const char *, const char *, void *, size_t); +ssize_t fgetxattr(int filedes, const char *, void *, size_t); +ssize_t listxattr(const char *, char *, size_t); +ssize_t llistxattr(const char *, char *, size_t); +ssize_t flistxattr(int filedes, char *, size_t); +int setxattr(const char *, const char *, const void *, size_t, int); +int lsetxattr(const char *, const char *, const void *, size_t, int); +int fsetxattr(int, const char *, const void *, size_t, int); + +#ifdef __cplusplus +} +#endif +#endif -- cgit v1.2.1