start of setxattr and getxattr implementation
This commit is contained in:
parent
9f031397e8
commit
848eb734b5
22
src/fs.js
22
src/fs.js
|
@ -1531,14 +1531,24 @@ define(function(require) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function _getxattr(path, name, callback) {
|
function _getxattr(context, path, name, callback) {
|
||||||
// TODO
|
if(!nullCheck(path, callback)) return;
|
||||||
// if(!nullCheck(path, callback)) return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function _setxattr(path, name, value, callback) {
|
function _setxattr(context, path, name, value, callback) {
|
||||||
// TODO
|
if(!nullCheck(path, callback)) return;
|
||||||
// if(!nullCheck(path, callback)) return;
|
|
||||||
|
function check_result (error) {
|
||||||
|
if (error) {
|
||||||
|
callback(error);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
callback(null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
setxattr_file (context, path, name, value, check_result);
|
||||||
}
|
}
|
||||||
|
|
||||||
function _lseek(fs, context, fd, offset, whence, callback) {
|
function _lseek(fs, context, fd, offset, whence, callback) {
|
||||||
|
|
Loading…
Reference in New Issue