Changeset f82edff0 in rtems
- Timestamp:
- 09/04/03 13:01:19 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d9c3805
- Parents:
- a0c59d6
- Location:
- doc/posix_users
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix_users/ChangeLog
ra0c59d6 rf82edff0 1 2003-09-04 Joel Sherrill <joel@OARcorp.com> 2 3 PR 466/doc 4 * io.t: Added sync(). 5 1 6 2003-01-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
doc/posix_users/io.t
ra0c59d6 rf82edff0 26 26 @item @code{fsync} - Synchronize file complete in-core state with that on disk 27 27 @item @code{fdatasync} - Synchronize file in-core data with that on disk 28 @item @code{sync} - Schedule file system updates 28 29 @item @code{mount} - Mount a file system 29 30 @item @code{unmount} - Unmount file systems … … 733 734 @c 734 735 @page 736 @subsection sync - Schedule file system updates 737 738 @findex sync 739 @cindex synchronize file systems 740 741 @subheading CALLING SEQUENCE: 742 743 @ifset is-C 744 @example 745 void sync(void); 746 @end example 747 @end ifset 748 749 @ifset is-Ada 750 @end ifset 751 752 @subheading STATUS CODES: 753 754 NONE 755 756 @subheading DESCRIPTION: 757 758 The @code{sync} service causes all information in memory that updates 759 file systems to be scheduled for writing out to all file systems. 760 761 762 @subheading NOTES: 763 764 The writing of data to the file systems is only guaranteed to be 765 scheduled upon return. It is not necessarily complete upon return 766 from @code{sync}. 767 768 @c 769 @c 770 @c 771 @page 735 772 @subsection mount - Mount a file system 736 773
Note: See TracChangeset
for help on using the changeset viewer.