Changeset 11032 in vbox for trunk/src/VBox/Runtime/r0drv/solaris
- Timestamp:
- Jul 31, 2008 3:14:27 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33922
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/mpnotification-r0drv-solaris.c
r9602 r11032 70 70 int rtR0MpNotificationNativeInit(void) 71 71 { 72 mutex_enter(&cpu_lock); 72 73 register_cpu_setup_func(rtMpNotificationSolarisCallback, NULL); 74 mutex_exit(&cpu_lock); 75 return VINF_SUCCESS; 73 76 } 74 77 … … 76 79 void rtR0MpNotificationNativeTerm(void) 77 80 { 81 mutex_enter(&cpu_lock); 78 82 unregister_cpu_setup_func(rtMpNotificationSolarisCallback, NULL); 83 mutex_exit(&cpu_lock); 79 84 } 80 85
Note:
See TracChangeset
for help on using the changeset viewer.