awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/ADBUFF.CMN
Brad Gonzales 632020195a Issue #628 committing PGEN code received from Plummer on 4-19-2012.
Former-commit-id: fda897d2d0 [formerly 253e8bc948] [formerly fda897d2d0 [formerly 253e8bc948] [formerly 295cbf95e5 [formerly 0816cd253c86acc699cb90866131619c4679f631]]]
Former-commit-id: 295cbf95e5
Former-commit-id: 2a3bf4ec32 [formerly ae3d17c698]
Former-commit-id: a610dcde73
2012-05-10 16:50:45 -05:00

24 lines
1.1 KiB
Text
Executable file

C************************************************************************
C* ADBUFF.CMN - UNIX version *
C* *
C* This common area holds a 128-word buffer of data to be sent through *
C* a mailbox to a subprocess. This buffer is used by the A and D tasks.*
C* *
C* Variables: *
C* NPOINT INTEGER Ptr to last word read in ibuff *
C* NWEXP INTEGER # words in complete message *
C* NWOUT INTEGER # words read from message *
C* MBCHAN INTEGER Mailbox channel number *
C* NTYPSR INTEGER Current access type *
C* 1 = write; 2 = read; -1 = none *
C* IRTYPE INTEGER Type of message to read *
C* IWTYPE INTEGER Type of message to write *
C* IBUFF (128) INTEGER Buffer *
C** *
C* Log: *
C* M. desJardins/GSFC 4/85 *
C* M. desJardins/GSFC 7/91 UNIX version *
C************************************************************************
COMMON / ADBUFF / npoint, nwexp, nwout, mbchan, ntypsr,
+ irtype, iwtype, ibuff (128)
C------------------------------------------------------------------------