Changeset 54293 in vbox
- Timestamp:
- Feb 19, 2015 1:00:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mp.h
r52618 r54293 344 344 * Notification callback. 345 345 * 346 * The context this is called in differs a bit from platform to 347 * platform, so be careful while in here. 346 * The context this is called in differs a bit from platform to platform, so be 347 * careful while in here. 348 * 349 * On Windows we're running with IRQL=PASSIVE_LEVEL according to the 350 * KeRegisterProcessorChangeCallback documentation - unrestricted API access. 351 * Probably not being called on the onlined/offlined CPU... 352 * 353 * On Solaris we're holding the cpu_lock, IPL/SPL/PIL is not yet known. Looks 354 * like we're being called on the CPU that's being onlined/offlined. 355 * 356 * On Linux it looks like we're called on the CPU in question. Interrupts may 357 * be disabled, it seems. 358 * 359 * There is no callbacks for darwin at the moment, due to lack of suitable KPI. 348 360 * 349 361 * @param idCpu The CPU this applies to.
Note:
See TracChangeset
for help on using the changeset viewer.