Changeset 13323 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Oct 16, 2008 9:48:12 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38002
- Location:
- trunk/src/VBox/Runtime/r0drv/solaris/vbi
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/vbi/i86pc/os/vbi.c
r12945 r13323 79 79 80 80 static struct modlmisc vbi_modlmisc = { 81 &mod_miscops, "V box Interfaces Ver3"81 &mod_miscops, "VirtualBox Interfaces V3" 82 82 }; 83 83 … … 910 910 ASSERT(interval < INT64_MAX); 911 911 ASSERT(interval + when < INT64_MAX); 912 ASSERT(on_cpu == VBI_ANY_CPU || on_cpu < ncpus); 912 913 913 914 t->s_handler.cyh_func = vbi_stimer_func; … … 919 920 920 921 mutex_enter(&cpu_lock); 921 if (on_cpu != VBI_ANY_CPU && ! vbi_cpu_online(on_cpu)) {922 if (on_cpu != VBI_ANY_CPU && !cpu_is_online(cpu[on_cpu])) { 922 923 t = NULL; 923 924 goto done; … … 1042 1043 * This is revision 3 of the interface. As more functions are added, 1043 1044 * they should go after this point in the file and the revision level 1044 * increased. 1045 * increased. Also change vbi_modlmisc at the top of the file. 1045 1046 */ 1046 1047 uint_t vbi_revision_level = 3;
Note:
See TracChangeset
for help on using the changeset viewer.