Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
Synopsis:
$close(<file descriptor>)
Technical:
This function unbinds the given file descriptor (previously returned by
the $open() function) from the underlying file, causing the file to be
committed to disk if necessary. An error is returned if it is passed a
file descriptor not produced by an $open() call.
Practical:
This function is used to close a file that was opened for reading or
writing by $open(). Data corruption may result if the client exits
before all open files are closed.
Returns:
-1 error
0 file closed successfully
See Also:
open(6); read(6); write(6)