140
|
1 <refentry id="unlink">
|
|
2 <refnamediv>
|
|
3 <refname>UNLINK</refname>
|
|
4 <refpurpose>Unlink memory module</refpurpose>
|
|
5 </refnamediv>
|
|
6
|
|
7 <refsynopsisdiv>
|
|
8 <cmdsynopsis>
|
|
9 <command>UNLINK</command>
|
|
10 <arg choice="plain">
|
|
11 &replstart;modname&replend;
|
|
12 </arg>
|
|
13 <arg choice="plain">
|
|
14 &repeatst; &replstart;modname&replend;&repeaten;
|
|
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
|
|
37 For more information see: 5.4, 5.4.1, 5.4.2
|
|
38 </para>
|
|
39 </refsect1>
|
|
40 <refsect1><title>Examples</title>
|
|
41 <screen>
|
|
42 unlink pgml pgm5 pgm99
|
|
43
|
|
44
|
|
45 OS9: mdir
|
|
46
|
|
47 Module Directory at 11:26:22
|
|
48 DCB4 D0 D1 D2 D3
|
|
49 OS9P2 INIT OS9 IOMAN RBF
|
|
50 SCF ACIA TERM T1 T2
|
|
51 T3 P PIA Sysgo Clock
|
|
52 Shell Tsmon Edit
|
|
53
|
|
54 OS9: unlink edit
|
|
55 OS9: mdir
|
|
56
|
|
57 Module Directory at 11:26:22
|
|
58 DCB4 D0 D1 D2 D3
|
|
59 OS9P2 INIT OS9 IOMAN RBF
|
|
60 SCF ACIA TERM T1 T2
|
|
61 T3 P PIA Sysgo Clock
|
|
62 Shell Tsmon
|
|
63 </screen>
|
|
64 </refsect1>
|
|
65 </refentry>
|
|
66
|