diff options
author | root <root> | 2011-07-05 09:24:11 +0000 |
---|---|---|
committer | root <root> | 2011-07-05 09:24:11 +0000 |
commit | c386664b94e2392f2d2cca35d7f8e9c6cb3c85c2 (patch) | |
tree | 5e82b156b8395dd502ff1028fb4cb1e2528030f4 /eio.h | |
parent | f40f89e5846a01dba0a726a5f30fde548ad63c0c (diff) |
realpath
Diffstat (limited to 'eio.h')
-rw-r--r-- | eio.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -154,7 +154,7 @@ enum EIO_MLOCK, EIO_MLOCKALL, EIO_UNLINK, EIO_RMDIR, EIO_MKDIR, EIO_RENAME, EIO_MKNOD, EIO_READDIR, - EIO_LINK, EIO_SYMLINK, EIO_READLINK, + EIO_LINK, EIO_SYMLINK, EIO_READLINK, EIO_REALPATH, EIO_GROUP, EIO_NOP, EIO_BUSY }; @@ -284,6 +284,7 @@ eio_req *eio_readdir (const char *path, int flags, int pri, eio_cb cb, void *d eio_req *eio_rmdir (const char *path, int pri, eio_cb cb, void *data); eio_req *eio_unlink (const char *path, int pri, eio_cb cb, void *data); eio_req *eio_readlink (const char *path, int pri, eio_cb cb, void *data); /* result=ptr2 allocated dynamically */ +eio_req *eio_realpath (const char *path, int pri, eio_cb cb, void *data); /* result=ptr2 allocated dynamically */ eio_req *eio_stat (const char *path, int pri, eio_cb cb, void *data); /* stat buffer=ptr2 allocated dynamically */ eio_req *eio_lstat (const char *path, int pri, eio_cb cb, void *data); /* stat buffer=ptr2 allocated dynamically */ eio_req *eio_statvfs (const char *path, int pri, eio_cb cb, void *data); /* stat buffer=ptr2 allocated dynamically */ |