- Timestamp:
- 07/16/2017 11:27:12 AM (7 years ago)
- Branches:
- master
- Children:
- d60f436
- Parents:
- ea232f9
- Location:
- libcio
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/clusmap.c
rea232f9 r99cac86 258 258 chclo arg; 259 259 int16_t ft; 260 int8_t * ds, *fsn, *fse;260 int8_t *fsn, *fse; 261 261 struct fcb *fcp; 262 262 … … 275 275 if (arg EQ _nopc) { 276 276 277 ds = ((struct devtabl *)chantab[fp->_unit].c_arg)->d_name;278 printf(" is a device: [%s]\n", ds);277 printf(" has device kind: [%d]\n", 278 (int16_t)(int32_t)chantab[fp->_unit].c_arg); 279 279 280 280 } else if (arg EQ _filecl) { -
libcio/conwr.c
rea232f9 r99cac86 18 18 int16_t _conwr(io_arg arg, void *buff, int16_t len) 19 19 { 20 struct devtabl *dp;20 int16_t kind; 21 21 int8_t *buff8; 22 22 register int16_t count; 23 23 24 dp = (struct devtabl *)arg;24 kind = (int16_t)arg; 25 25 buff8 = buff; 26 26 27 27 for (count = 0; count < len; ++count) 28 BIOS(B_PUTC, dp->d_kind, *buff8++);28 BIOS(B_PUTC, kind, *buff8++); 29 29 30 30 return(count); -
libcio/fsinit.c
rea232f9 r99cac86 157 157 158 158 for (i = 3; i < MAXCHAN; i++) /* 3..MAXCHAN-1 - not preassigned */ 159 InitCH(&chantab[i], 0, 0, 0, 0, _badfc, (io_arg) 0L);159 InitCH(&chantab[i], 0, 0, 0, 0, _badfc, (io_arg)-1 ); 160 160 161 161 _bpbin = FALSE; /* BPB isn't in memory */ -
libcio/open.c
rea232f9 r99cac86 8 8 #include "ram.h" 9 9 10 static struct device condev = { 2, 2, 1, 0, _nopo 11 static struct device filedev = { 1, 1, 0, 1, _fileop };10 static struct device condev = { 2, 2, 1, 0, _nopo, CON_DEV }; 11 static struct device filedev = { 1, 1, 0, 1, _fileop, -1 }; 12 12 13 13 /* … … 19 19 static struct devtabl devtabl[] = { 20 20 21 { "con:", &condev , &devtabl[0], CON_DEV}, /* console device */22 { "CON:", &condev , &devtabl[1], CON_DEV},23 24 { 0, &filedev , NULL, -1} /* this MUST be the last entry */21 { "con:", &condev }, /* console device */ 22 { "CON:", &condev }, 23 24 { 0, &filedev } /* this MUST be the last entry */ 25 25 }; 26 26 … … 80 80 /* setup the channel table entries */ 81 81 82 chp->c_arg = dp->d_arg;82 chp->c_arg = (io_arg)(int32_t)dp->d_dev->d_kind; 83 83 chp->c_ioctl = dev->d_ioctl; 84 84 chp->c_seek = dev->d_seek;
Note:
See TracChangeset
for help on using the changeset viewer.