aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/tbtfst.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 /pkg/tbtables/tbtfst.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/tbtables/tbtfst.x')
-rw-r--r--pkg/tbtables/tbtfst.x45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkg/tbtables/tbtfst.x b/pkg/tbtables/tbtfst.x
new file mode 100644
index 00000000..02add3dc
--- /dev/null
+++ b/pkg/tbtables/tbtfst.x
@@ -0,0 +1,45 @@
+include <tbset.h>
+include "tbtables.h"
+include "tblerr.h"
+
+# tbtfst -- call fseti
+# This procedure calls fseti to set F_ADVICE to either RANDOM or SEQUENTIAL
+# for a table file. The file is first closed and then reopened because
+# the buffer size cannot be changed after the first I/O to a file. (The
+# table was read when first opened.) The value of TB_FILE(tp) might be
+# changed. The file is reopened either readonly or read/write.
+#
+# Phil Hodge, 30-Sep-1987 Subroutine created.
+# Phil Hodge, 15-Nov-1988 Modify error message.
+# Phil Hodge, 5-Oct-1995 Check table type.
+
+procedure tbtfst (tp, fset_option, fset_value)
+
+pointer tp # i: pointer to table descriptor
+int fset_option # i: specifies what FIO parameter is to be set
+int fset_value # i: the value that is to be assigned
+#--
+int iomode # I/O mode for reopening the file
+int open()
+
+errchk close, open
+
+begin
+ if (TB_FILE(tp) == NULL)
+ call error (ER_TBNOTOPEN,
+ "tbtfst: table must be open to set FIO option")
+
+ if (TB_TYPE(tp) != TBL_TYPE_S_ROW && TB_TYPE(tp) != TBL_TYPE_S_COL)
+ return
+
+ if (TB_READONLY(tp)) {
+ iomode = READ_ONLY
+ } else {
+ call tbtwsi (tp) # update size information record
+ iomode = READ_WRITE
+ }
+ call close (TB_FILE(tp))
+ TB_FILE(tp) = open (TB_NAME(tp), iomode, BINARY_FILE)
+
+ call fseti (TB_FILE(tp), fset_option, fset_value)
+end