Mercurial > hg > Members > kono > nitros9-code
view docs/ccguide/exit.refentry @ 2772:0a3f4d8ea6d5
Found ENDC in wrong location in dwread.asm and dwwrite.asm. Corrected.
Moved the native 6309 code in dwread.asm and dwwrite.asm into the H6309 labeled area and changed IFEQ H6309 to IFNE H6309. Also moved the 57600bps 6809 code to the default location. This change had been done in the old dwread.asm and dwwrite.asm files to make it easier to follow. Though these two files were overwritten from the HDBDOS project dwread.asm and dwwrite.asm files. So this conversion needed to be done again so it made the source easier to follow.
author | drencor-xeen |
---|---|
date | Wed, 23 Jan 2013 12:36:55 -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>