annotate docs/ccguide/munlink.refentry @ 3220:9ccec98c9897

Updated IDE Driver makefile so it will have place holders for dsk, dskclean, and dskcopy so that make does not error out when chaining into the driver tree to build disk images where applicable.
author David Ladd <drencor-xeen@users.sourceforge.net>
date Wed, 20 Dec 2017 16:10:50 -0600
parents 24956f96b7dd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
1 <refentry id="munlink">
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
2 <refnamediv>
468
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
3 <refname>Munlink</refname>
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
4 <refpurpose>unlink a module</refpurpose>
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
5 </refnamediv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
6
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
7 <refsynopsisdiv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
8 <funcsynopsis>
468
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
9 <funcsynopsisinfo>
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
10 #include &lt;module.h&gt;
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
11 </funcsynopsisinfo>
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
12 <funcprototype>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
13 <funcdef><function>munlink</function></funcdef>
571
24956f96b7dd All function prototypes are added.
roug
parents: 569
diff changeset
14 <paramdef>mod_exec *<parameter>mod</parameter></paramdef>
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
15 </funcprototype>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
16 </funcsynopsis>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
17
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
18 </refsynopsisdiv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
19
542
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
20 <refsect1><title>Assembler Equivalent</title>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
21 <para>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
22 os9 F$UNLINK
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
23 </para>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
24 </refsect1>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
25
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
26 <refsect1><title>Description</title>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
27 <para>
569
3cd7606d9c7b Several functions ready.
roug
parents: 542
diff changeset
28 This call informs the system that the module pointed to by
3cd7606d9c7b Several functions ready.
roug
parents: 542
diff changeset
29 "mod" is no longer required by the current process. Its link
3cd7606d9c7b Several functions ready.
roug
parents: 542
diff changeset
30 count is decremented, and the module is removed from the module
3cd7606d9c7b Several functions ready.
roug
parents: 542
diff changeset
31 directory if the link count reaches zero.
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
32 </para>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
33 </refsect1>
542
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
34
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
35 <refsect1><title>See Also</title>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
36 <para>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
37 <link linkend="modload">modlink(), modload()</link>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
38 </para>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
39 </refsect1>
73319ee6a57e All "See Also" implemented
roug
parents: 468
diff changeset
40
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
41 </refentry>