Add mkfifo()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@773 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
817e4fc51d
commit
0b066e5d9e
@ -8,7 +8,7 @@
|
|||||||
<tr align="center" bgcolor="#e4e4e4">
|
<tr align="center" bgcolor="#e4e4e4">
|
||||||
<td>
|
<td>
|
||||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
||||||
<p>Last Updated: June 3, 2008</p>
|
<p>Last Updated: July 20, 2008</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -1023,6 +1023,7 @@ nuttx-0.3.12 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
|||||||
* Improved solution to POSIX timer lifetime controls bug fixed in 0.3.11.
|
* Improved solution to POSIX timer lifetime controls bug fixed in 0.3.11.
|
||||||
* Add test for recursive mutexes
|
* Add test for recursive mutexes
|
||||||
* Correct bug in recursive mutex logic
|
* Correct bug in recursive mutex logic
|
||||||
|
* Add mkfifo()
|
||||||
|
|
||||||
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ User's Manual
|
|||||||
<p>
|
<p>
|
||||||
Gregory Nutt
|
Gregory Nutt
|
||||||
<p>
|
<p>
|
||||||
<small>Last Update: May 31, 2008</small>
|
<small>Last Update: July 20, 2008</small>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<h1>1.0 <A NAME="Introduction">Introduction</a></h1>
|
<h1>1.0 <A NAME="Introduction">Introduction</a></h1>
|
||||||
@ -5964,6 +5964,7 @@ interface of the same name.
|
|||||||
int fstat(int fd, FAR struct stat *buf); /* Prototyped but not implemented */
|
int fstat(int fd, FAR struct stat *buf); /* Prototyped but not implemented */
|
||||||
char *getcwd(FAR char *buf, size_t size); /* Prototyped but not implemented */
|
char *getcwd(FAR char *buf, size_t size); /* Prototyped but not implemented */
|
||||||
int mkdir(const char *path, mode_t mode);
|
int mkdir(const char *path, mode_t mode);
|
||||||
|
int mkfifo(const char *path, mode_t mode);
|
||||||
int rmdir(const char *path);
|
int rmdir(const char *path);
|
||||||
int stat(const char *path, FAR struct stat *buf);
|
int stat(const char *path, FAR struct stat *buf);
|
||||||
int statfs(const char *path, FAR struct statfs *buf); /* Prototyped but not implemented */
|
int statfs(const char *path, FAR struct statfs *buf); /* Prototyped but not implemented */
|
||||||
|
Loading…
Reference in New Issue
Block a user