Mercurial > hg > Members > kono > nitros9-code
view docs/ccguide/close.refentry @ 2342:82c9672489a0
Made change to workings of SHARE. bit to what I believe is the proper way.
author | boisy |
---|---|
date | Fri, 15 Jan 2010 15:54:53 +0000 |
parents | 3339ee2e58bc |
children |
line wrap: on
line source
<refentry id="close"> <refnamediv> <refname>Close</refname> <refpurpose>close a file</refpurpose> </refnamediv> <refsynopsisdiv> <funcsynopsis> <funcprototype> <funcdef><function>close</function></funcdef> <paramdef>int <parameter>pn</parameter></paramdef> </funcprototype> </funcsynopsis> </refsynopsisdiv> <refsect1><title>Assembler Equivalent</title> <para> os9 I$CLOSE </para> </refsect1> <refsect1><title>Description</title> <para> Close takes a path number, "pn", as returned from system calls "open()", "creat()", or "dup()", and closes the associated file. </para> <para> Termination of a task always closes all open files automatically, but it is necessary to close files where multiple files are opened by the task, and it is desired to re-use path numbers to avoid going over the system or process path number limit. </para> </refsect1> <refsect1><title>See Also</title> <para> <link linkend="creat">creat()</link>, <link linkend="open">open()</link>, <link linkend="dup">dup()</link> </para> </refsect1> </refentry>