aboutsummaryrefslogtreecommitdiff
path: root/sys/etc/gen/nmireadl.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/etc/gen/nmireadl.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'sys/etc/gen/nmireadl.x')
-rw-r--r--sys/etc/gen/nmireadl.x50
1 files changed, 50 insertions, 0 deletions
diff --git a/sys/etc/gen/nmireadl.x b/sys/etc/gen/nmireadl.x
new file mode 100644
index 00000000..888beedf
--- /dev/null
+++ b/sys/etc/gen/nmireadl.x
@@ -0,0 +1,50 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <nmi.h>
+
+# NMI_READ -- Read a block of data stored externally in NMI format.
+# Data is returned in the format of the local host machine.
+
+int procedure nmi_readl (fd, spp, maxelem)
+
+int fd #I input file
+long spp[ARB] #O receives data
+int maxelem # max number of data elements to be read
+
+pointer sp, bp
+int pksize, nchars, nelem
+int nmipksize(), nminelem(), read()
+errchk read()
+
+long note()
+
+begin
+ pksize = nmipksize (maxelem, NMI_LONG)
+ nelem = EOF
+
+ if (pksize > maxelem * SZ_LONG) {
+ # Read data into local buffer and unpack into user buffer.
+
+ call smark (sp)
+ call salloc (bp, pksize, TY_CHAR)
+
+ nchars = read (fd, Memc[bp], pksize)
+ if (nchars != EOF) {
+ nelem = min (maxelem, nminelem (nchars, NMI_LONG))
+ call nmiupkl (Memc[bp], spp, nelem, TY_LONG)
+ }
+
+ call sfree (sp)
+
+ } else {
+ # Read data into user buffer and unpack in place.
+
+ nchars = read (fd, spp, pksize)
+ if (nchars != EOF) {
+ nelem = min (maxelem, nminelem (nchars, NMI_LONG))
+ call nmiupkl (spp, spp, nelem, TY_LONG)
+ }
+ }
+
+ return (nelem)
+end