aboutsummaryrefslogtreecommitdiff
path: root/sys/qpoe/qpexclose.x
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /sys/qpoe/qpexclose.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
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