mirror of
https://github.com/ceph/ceph
synced 2025-02-08 19:38:47 +00:00
dc48f25847
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@2100 29311d96-e01e-0410-9327-a35deaab8ce9
32 lines
703 B
C++
32 lines
703 B
C++
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <sys/file.h>
|
|
#include <iostream>
|
|
#include <cassert>
|
|
#include <errno.h>
|
|
#include <dirent.h>
|
|
#include <sys/xattr.h>
|
|
|
|
int main(int argc, char**argv)
|
|
{
|
|
int a = 1;
|
|
int b = 2;
|
|
|
|
mknod("test", 0600, 0);
|
|
|
|
cout << "setxattr " << setxattr("test", "asdf", &a, sizeof(a), 0) << endl;
|
|
cout << "errno " << errno << " " << strerror(errno) << endl;
|
|
cout << "getxattr " << getxattr("test", "asdf", &b, sizeof(b)) << endl;
|
|
cout << "errno " << errno << " " << strerror(errno) << endl;
|
|
cout << "a is " << a << " and b is " << b << endl;
|
|
return 0;
|
|
}
|