Changeset 10454 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Jul 10, 2008 6:58:54 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r10377 r10454 167 167 #endif 168 168 169 /** Opaque pointer to state */169 /** Opaque pointer to list of state */ 170 170 static void *g_pVBoxDrvSolarisState; 171 171 … … 190 190 dprintf(("VBoxDrvSolaris _init")); 191 191 192 int rc = ddi_soft_state_init(&g_pVBoxDrvSolarisState, sizeof(vbox_devstate_t), 8);192 int rc = ddi_soft_state_init(&g_pVBoxDrvSolarisState, sizeof(vbox_devstate_t), 1); 193 193 if (!rc) 194 194 { … … 231 231 * 232 232 * @param pDip The module structure instance. 233 * @param enmCmd Attach type (ddi_attach_cmd_t)233 * @param enmCmd Operation type (attach/resume). 234 234 * 235 235 * @return corresponding solaris error code. … … 331 331 * 332 332 * @param pDip The module structure instance. 333 * @param enmCmd Attach type (ddi_attach_cmd_t)333 * @param enmCmd Operation type (detach/suspend). 334 334 * 335 335 * @return corresponding solaris error code.
Note:
See TracChangeset
for help on using the changeset viewer.