Changeset 33540 in vbox for trunk/src/VBox/Runtime/r0drv/freebsd
- Timestamp:
- Oct 28, 2010 9:27:05 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Runtime/r0drv/freebsd
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c
r32708 r33540 158 158 _4G-1, /* highest physical address */ 159 159 PAGE_SIZE, /* alignment. */ 160 0); /* bound rary */160 0); /* boundary */ 161 161 if (pv) 162 162 { -
trunk/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c
r32348 r33540 375 375 _4G-1, /* highest physical address */ 376 376 PAGE_SIZE, /* alignment. */ 377 0); /* bound rary */377 0); /* boundary */ 378 378 if (pMemFreeBSD->Core.pv) 379 379 { … … 492 492 _4G-1, /* highest physical address */ 493 493 uAlignment, /* alignment. */ 494 0); /* bound rary */494 0); /* boundary */ 495 495 if (pMemFreeBSD->Core.pv) 496 496 { -
trunk/src/VBox/Runtime/r0drv/freebsd/mp-r0drv-freebsd.c
r29499 r33540 161 161 RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2) 162 162 { 163 /* Will panic if no rendezvou ing cpus, so check up front. */163 /* Will panic if no rendezvousing cpus, so check up front. */ 164 164 if (RTMpGetOnlineCount() > 1) 165 165 { … … 209 209 RTMPARGS Args; 210 210 211 /* Will panic if no rendezvou ing cpus, so make sure the cpu is online. */211 /* Will panic if no rendezvousing cpus, so make sure the cpu is online. */ 212 212 if (!RTMpIsCpuOnline(idCpu)) 213 213 return VERR_CPU_NOT_FOUND; … … 245 245 cpumask_t Mask; 246 246 247 /* Will panic if no rendezvou ing cpus, so make sure the cpu is online. */247 /* Will panic if no rendezvousing cpus, so make sure the cpu is online. */ 248 248 if (!RTMpIsCpuOnline(idCpu)) 249 249 return VERR_CPU_NOT_FOUND; -
trunk/src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h
r29878 r33540 72 72 73 73 /** 74 * Wrappers aroun tthe sleepq_ KPI.74 * Wrappers around the sleepq_ KPI. 75 75 */ 76 76 #if __FreeBSD_version >= 800026 -
trunk/src/VBox/Runtime/r0drv/freebsd/timer-r0drv-freebsd.c
r32572 r33540 171 171 172 172 /* 173 * Calc when it should start fir eing.173 * Calc when it should start firing. 174 174 */ 175 175 u64First += RTTimeNanoTS();
Note:
See TracChangeset
for help on using the changeset viewer.