Changeset 50753 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Mar 12, 2014 5:32:20 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c
r50752 r50753 338 338 if (RT_SUCCESS(rc)) 339 339 { 340 rc = ddi_create_minor_node(pDip, DEVICE_NAME, S_IFCHR, instance, DDI_PSEUDO, 0 );340 rc = ddi_create_minor_node(pDip, DEVICE_NAME, S_IFCHR, instance, DDI_PSEUDO, 0 /* fFlags */); 341 341 if (rc == DDI_SUCCESS) 342 342 { … … 806 806 { 807 807 /* Initialize the mutex. */ 808 mutex_init(&g_IrqMtx, NULL , MUTEX_DRIVER, DDI_INTR_PRI(uIntrPriority));808 mutex_init(&g_IrqMtx, NULL /* pszDesc */, MUTEX_DRIVER, DDI_INTR_PRI(uIntrPriority)); 809 809 810 810 /* Assign interrupt handler functions and enable interrupts. */ … … 812 812 { 813 813 rc = ddi_intr_add_handler(g_pIntr[i], (ddi_intr_handler_t *)VBoxGuestSolarisISR, 814 NULL /* No Private Data */, NULL);814 NULL /* pvArg1 */, NULL /* pvArg2 */); 815 815 if (rc == DDI_SUCCESS) 816 816 rc = ddi_intr_enable(g_pIntr[i]);
Note:
See TracChangeset
for help on using the changeset viewer.