diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-08-30 01:59:38 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-08-30 01:59:38 -0700 |
commit | 2823ab47dc4a1393d5d691d7ba078b63960a6309 (patch) | |
tree | 68ad58c4d452c7011ad45d824c99c57363d2b0b1 /deps/uv | |
parent | bce41fac9458dd3dec844fc80c8144060e6a9f30 (diff) | |
download | nodejs-2823ab47dc4a1393d5d691d7ba078b63960a6309.tar.gz nodejs-2823ab47dc4a1393d5d691d7ba078b63960a6309.tar.bz2 nodejs-2823ab47dc4a1393d5d691d7ba078b63960a6309.zip |
Upgrade libuv to ca11711
Diffstat (limited to 'deps/uv')
-rw-r--r-- | deps/uv/src/win/fs.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/deps/uv/src/win/fs.c b/deps/uv/src/win/fs.c index 475018427..304f353e9 100644 --- a/deps/uv/src/win/fs.c +++ b/deps/uv/src/win/fs.c @@ -528,6 +528,49 @@ int uv_fs_readdir(uv_fs_t* req, const char* path, int flags, uv_fs_cb cb) { } +int uv_fs_lstat(uv_fs_t* req, const char* path, uv_fs_cb cb) { + assert(0 && "implement me"); + return -1; +} + + +// uv_fs_readlink, uv_fs_fchmod, uv_fs_chown, uv_fs_fchown +int uv_fs_link(uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) { + assert(0 && "implement me"); + return -1; +} + + +int uv_fs_symlink(uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) { + assert(0 && "implement me"); + return -1; +} + + +int uv_fs_readlink(uv_fs_t* req, const char* path, uv_fs_cb cb) { + assert(0 && "implement me"); + return -1; +} + + +int uv_fs_fchmod(uv_fs_t* req, uv_file file, int mode, uv_fs_cb cb) { + assert(0 && "implement me"); + return -1; +} + + +int uv_fs_chown(uv_fs_t* req, const char* path, int uid, int gid, uv_fs_cb cb) { + assert(0 && "implement me"); + return -1; +} + + +int uv_fs_fchown(uv_fs_t* req, uv_file file, int uid, int gid, uv_fs_cb cb) { + assert(0 && "implement me"); + return -1; +} + + int uv_fs_stat(uv_fs_t* req, const char* path, uv_fs_cb cb) { int len = strlen(path); char* path2 = NULL; |