view docs/ccguide/exit.refentry @ 2798:b70d93f8d7ce lwtools-port

Updated coco1/modules/makefile and coco3/modules/makefile to help resolve issues with i(x) and s(x) descriptors. Updated level1/coco1/modules/makefile & level2/coco3/modules/makefile so that correct values would be sent to assembler when building superdesc.asm for s(x).dd and i(x).dd descriptors.
author drencor-xeen
date Mon, 28 Jan 2013 16:13:05 -0600
parents c0da1728ed5b
children
line wrap: on
line source

<refentry id="exit">
<refnamediv>
<refname>Exit</refname>
<refname>_Exit</refname>
<refpurpose>task termination</refpurpose>
</refnamediv>

<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
  <funcdef><function>exit</function></funcdef>
  <paramdef>int <parameter>status</parameter></paramdef>
</funcprototype>

<funcprototype>
  <funcdef><function>_exit</function></funcdef>
  <paramdef>int <parameter>status</parameter></paramdef>
</funcprototype>
</funcsynopsis>

</refsynopsisdiv>

<refsect1><title>Assembler Equivalent</title>
<para>
os9 F$EXIT
</para>
</refsect1>

<refsect1><title>Description</title>
<para>
Exit is the normal means of terminating a task. Exit does any
cleaning up operations required before terminating, such as
flushing out any file buffers (see Standard i/o), but _exit
does not.
</para>
<para>
A task finishing normally, that is returning from "main()",
is equivalent to a call - "exit(0)".
</para>
<para>
The status passed to exit is available to the parent task if it
is executing a "wait".
</para>
</refsect1>

<refsect1><title>See Also</title>
<para>
<link linkend="wait">wait()</link>
</para>
</refsect1>
</refentry>