Changeset 2b9f1f5d in rtems
- Timestamp:
- 10/11/99 21:47:19 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- cb5056b3
- Parents:
- 2ec1156
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix_users/io.t
r2ec1156 r2b9f1f5d 105 105 106 106 int dup( 107 int fildes107 int fildes 108 108 ); 109 109 @end example … … 153 153 154 154 int dup2( 155 int fildes,156 int fildes2155 int fildes, 156 int fildes2 157 157 ); 158 158 @end example … … 204 204 205 205 int close( 206 int fildes206 int fildes 207 207 ); 208 208 @end example … … 250 250 251 251 int read( 252 int fildes,253 void *buf,254 unsigned int nbyte252 int fildes, 253 void *buf, 254 unsigned int nbyte 255 255 ); 256 256 @end example … … 351 351 352 352 int write( 353 int fildes,354 const void *buf,355 unsigned int nbytes353 int fildes, 354 const void *buf, 355 unsigned int nbytes 356 356 ); 357 357 @end example … … 424 424 425 425 int fcntl( 426 int fildes,427 int cmd426 int fildes, 427 int cmd 428 428 ); 429 429 @end example … … 561 561 562 562 int lseek( 563 int fildes,564 off_t offset,565 int whence563 int fildes, 564 off_t offset, 565 int whence 566 566 ); 567 567 @end example … … 633 633 @example 634 634 int fsync( 635 int fd635 int fd 636 636 ); 637 637 @end example … … 683 683 @example 684 684 int fdatasync( 685 int fd685 int fd 686 686 ); 687 687 @end example … … 746 746 747 747 int mount( 748 const char*specialfile,749 const char CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.tdir,750 const char CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.tfilesystemtype,751 unsigned long rwflag,752 const void CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.tdata748 const char *specialfile, 749 const char dir, 750 const char filesystemtype, 751 unsigned long rwflag, 752 const void data 753 753 ); 754 754 @end example … … 847 847 848 848 int umount( 849 const char *specialfile849 const char *specialfile 850 850 ); 851 851 @end example
Note: See TracChangeset
for help on using the changeset viewer.