From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- sys/qpoe/qpexclose.x | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sys/qpoe/qpexclose.x (limited to 'sys/qpoe/qpexclose.x') 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 +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 -- cgit