Mercurial > hg > Members > kono > nitros9-code
view docs/ccguide/exit.refentry @ 3140:03b580a02945
Allow CoCo3FPGA-specific build of superdesc.asm
Added new conditional CC3FPGA and code to "level1/modules/superdesc.asm"
to reflect changes needed to build the new SD card descriptors for the
Coco3FPGA.
author | Bill Pierce <merlinious999@gmail.com> |
---|---|
date | Sat, 04 Feb 2017 11:06:26 +0100 |
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>