[f40a309] | 1 | /*
|
---|
| 2 | ============================================================================
|
---|
| 3 | io.h -- Buchla 700 I/O library definitions
|
---|
| 4 | Version 12 -- 1987-09-25 -- D.N. Lynx Crowe
|
---|
| 5 | ============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[f7428b1] | 8 | #pragma once
|
---|
[5fa506d] | 9 |
|
---|
[f40a309] | 10 | #include "fspars.h" /* file system parameters */
|
---|
[5fa506d] | 11 | #include "stdint.h"
|
---|
[f40a309] | 12 |
|
---|
[4a17aeb] | 13 | struct devtabl;
|
---|
| 14 | struct channel;
|
---|
| 15 |
|
---|
| 16 | typedef int16_t (*chclo)(io_arg arg);
|
---|
[8973acd] | 17 | typedef int16_t (*devop)(int8_t *name, uint16_t flag, struct channel *chp, struct devtabl *dp);
|
---|
[4a17aeb] | 18 |
|
---|
[f40a309] | 19 | struct channel { /* channel table entry */
|
---|
| 20 |
|
---|
[8973acd] | 21 | int16_t c_read; /* read routine index */
|
---|
| 22 | int16_t c_write; /* write routine index */
|
---|
| 23 | int16_t c_ioctl; /* ioctl routine index */
|
---|
| 24 | int16_t c_seek; /* seek routine index */
|
---|
[4a17aeb] | 25 | chclo c_close; /* close function pointer */
|
---|
[f40a309] | 26 | io_arg c_arg; /* argument to channel driver */
|
---|
| 27 | };
|
---|
| 28 |
|
---|
| 29 | struct device { /* device control structure */
|
---|
| 30 |
|
---|
[8973acd] | 31 | int16_t d_read; /* read routine code */
|
---|
| 32 | int16_t d_write; /* write routine code */
|
---|
| 33 | int16_t d_ioctl; /* ioctl routine code */
|
---|
| 34 | int16_t d_seek; /* seek routine code */
|
---|
[4a17aeb] | 35 | devop d_open; /* special open function */
|
---|
[99cac86] | 36 | int16_t d_kind; /* kind of device */
|
---|
[f40a309] | 37 | };
|
---|
| 38 |
|
---|
| 39 | struct devtabl { /* device table entry */
|
---|
| 40 |
|
---|
[7258c6a] | 41 | int8_t *d_name; /* device name */
|
---|
[f40a309] | 42 | struct device *d_dev; /* pointer to device structure */
|
---|
| 43 | };
|
---|