sync.html 546 B

1234567891011121314151617181920212223242526272829303132333435
  1. <html>
  2. <head>
  3. <title>sync</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>sync</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. sync - flush filesystem data to disk
  9. <h3>Library</h3>
  10. Standard C Library (libc, -lc)
  11. <h3>Synopsis</h3>
  12. #include &lt;unistd.h&gt;<br>
  13. <br>
  14. void<br>
  15. sync(void);
  16. <h3>Description</h3>
  17. The sync function forces a write of all dirty filesystem buffers and
  18. dirty filesystem state to disk.
  19. <p>
  20. <h3>Return Values</h3>
  21. No value is returned, and sync does not fail.
  22. <h3>Errors</h3>
  23. None.
  24. </body>
  25. </html>