Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/unlink.refentry @ 1399:40ccec5c5717
Updated
author | boisy |
---|---|
date | Fri, 10 Oct 2003 12:26:41 +0000 |
parents | 958740284209 |
children |
rev | line source |
---|---|
140 | 1 <refentry id="unlink"> |
2 <refnamediv> | |
3 <refname>UNLINK</refname> | |
4 <refpurpose>Unlink memory module</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
1093 | 9 <command>unlink</command> |
140 | 10 <arg choice="plain"> |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
140
diff
changeset
|
11 <replaceable>modname</replaceable> |
140 | 12 </arg> |
13 <arg choice="plain"> | |
1094 | 14 &repeatst;<replaceable>modname</replaceable>&repeaten; |
140 | 15 </arg> |
16 </cmdsynopsis> | |
17 </refsynopsisdiv> | |
18 | |
19 <refsect1><title>Description</title> | |
20 <para> | |
21 Tells OS-9 that the memory module(s) named are no longer needed by | |
22 the user. The module(s) may or may not be destroyed and their | |
23 memory reassigned, depending on if in use by other processes or | |
24 user, whether resident in ROM or RAM, etc. | |
25 </para> | |
26 <para> | |
27 It is good practice to unload modules whenever possible to make most | |
28 efficient use of available memory resources. | |
29 </para> | |
30 <para> | |
31 | |
32 Warning: never unlink a module you did not load or link to. | |
33 </para> | |
34 <para> | |
35 | |
36 | |
1093 | 37 For more information see: <xref linkend="sec5.4"/>, |
38 <xref linkend="sec5.4.1"/>, <xref linkend="sec5.4.2"/> | |
140 | 39 </para> |
40 </refsect1> | |
41 <refsect1><title>Examples</title> | |
42 <screen> | |
43 unlink pgml pgm5 pgm99 | |
44 | |
45 | |
46 OS9: mdir | |
47 | |
48 Module Directory at 11:26:22 | |
49 DCB4 D0 D1 D2 D3 | |
50 OS9P2 INIT OS9 IOMAN RBF | |
51 SCF ACIA TERM T1 T2 | |
52 T3 P PIA Sysgo Clock | |
53 Shell Tsmon Edit | |
54 | |
55 OS9: unlink edit | |
56 OS9: mdir | |
57 | |
58 Module Directory at 11:26:22 | |
59 DCB4 D0 D1 D2 D3 | |
60 OS9P2 INIT OS9 IOMAN RBF | |
61 SCF ACIA TERM T1 T2 | |
62 T3 P PIA Sysgo Clock | |
63 Shell Tsmon | |
64 </screen> | |
65 </refsect1> | |
66 </refentry> | |
67 |