Reworked network and SCSI thread initialization and termination;

Hard disk controller name and other related strings are now char * instead of fixed-size arrays.
This commit is contained in:
OBattler
2017-10-19 23:55:51 +02:00
parent 1d60a99ea3
commit b755b27304
18 changed files with 262 additions and 113 deletions

View File

@@ -45,7 +45,7 @@ device_init(void)
}
void
void *
device_add(device_t *d)
{
void *priv = NULL;
@@ -65,7 +65,9 @@ device_add(device_t *d)
}
devices[c] = d;
device_priv[c] = priv;
device_priv[c] = priv;
return priv;
}