aboutsummaryrefslogtreecommitdiff
path: root/sys/qpoe/qpexclose.x
diff options
context:
space:
mode:
Diffstat (limited to 'sys/qpoe/qpexclose.x')
-rw-r--r--sys/qpoe/qpexclose.x25
1 files changed, 25 insertions, 0 deletions
diff --git a/sys/qpoe/qpexclose.x b/sys/qpoe/qpexclose.x
new file mode 100644
index 00000000..137884e9
--- /dev/null
+++ b/sys/qpoe/qpexclose.x
@@ -0,0 +1,25 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <mach.h>
+include "qpex.h"
+
+# QPEX_CLOSE -- Close the QPEX descriptor.
+
+procedure qpex_close (ex)
+
+pointer ex #I QPEX descriptor
+
+pointer lt
+
+begin
+ # Free any LUT buffers.
+ for (lt=EX_LTHEAD(ex); lt != NULL; lt=LT_NEXT(lt))
+ call mfree (LT_LUTP(lt), TY_SHORT)
+
+ # Free the data and program buffers.
+ call mfree (EX_PB(ex), TY_STRUCT)
+ call mfree (EX_DB(ex), TY_CHAR)
+
+ # Free the main descriptor.
+ call mfree (ex, TY_STRUCT)
+end