Changeset 45700 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Apr 24, 2013 2:17:15 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-darwin.cpp
r45463 r45700 649 649 */ 650 650 651 /** 652 * Just a plug 653 */ 651 654 static void 652 655 interruptHandler(OSObject *pOwner, IOInterruptEventSource *pSrc, int cInts) 653 656 { 657 NOREF(pOwner); 658 NOREF(pSrc); 659 NOREF(cInts); 660 } 661 662 /** 663 * Callback triggered when interrupt occurs. 664 */ 665 static bool 666 checkForInterrupt(OSObject *pOwner, IOFilterInterruptEventSource *pSrc) 667 { 654 668 if (!pSrc) 655 return ;669 return false; 656 670 657 671 bool fTaken = VBoxGuestCommonISR(&g_DevExt); 658 672 if (!fTaken) 659 673 printf("VBoxGuestCommonISR error\n"); 660 } 661 662 static bool 663 checkForInterrupt(OSObject *pOwner, IOFilterInterruptEventSource *pSrc) 664 { 665 if (!pSrc) 666 return false; 667 668 return true; 674 675 return fTaken; 669 676 } 670 677
Note:
See TracChangeset
for help on using the changeset viewer.