[DFS] Add fcntl API (same with ioctl in RT-Thread).

This commit is contained in:
BernardXiong
2017-12-31 14:46:24 +08:00
parent 8246da645d
commit 5a95d35626
4 changed files with 56 additions and 9 deletions
+2
View File
@@ -22,6 +22,7 @@
* 2009-05-27 Yi.qiu The first version.
* 2010-07-18 Bernard add stat and statfs structure definitions.
* 2011-05-16 Yi.qiu Change parameter name of rename, "new" is C++ key word.
* 2017-12-27 Bernard Add fcntl API.
*/
#ifndef __DFS_POSIX_H__
@@ -66,6 +67,7 @@ int unlink(const char *pathname);
int stat(const char *file, struct stat *buf);
int fstat(int fildes, struct stat *buf);
int fsync(int fildes);
int fcntl(int fildes, int cmd, void *data);
int ioctl(int fildes, int cmd, void *data);
/* directory api*/