VirtualBox

Changeset 9416 in vbox


Ignore:
Timestamp:
Jun 5, 2008 12:47:29 PM (16 years ago)
Author:
vboxsync
Message:

Return VERR_NOT_SUPPORTED if RTTIMER_FLAGS_CPU_* is set.

Location:
trunk/src/VBox/Runtime
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/generic/timer-generic.cpp

    r9308 r9416  
    9494
    9595    /*
     96     * We don't support the fancy MP features.
     97     */
     98    if (fFlags & RTTIMER_FLAGS_CPU_SPECIFIC)
     99        return VERR_NOT_SUPPORTED;
     100
     101    /*
    96102     * Allocate and initialize the timer handle.
    97103     */
  • trunk/src/VBox/Runtime/r0drv/os2/timer-r0drv-os2.cpp

    r8245 r9416  
    114114
    115115    /*
     116     * We don't support the fancy MP features.
     117     */
     118    if (fFlags & RTTIMER_FLAGS_CPU_SPECIFIC)
     119        return VERR_NOT_SUPPORTED;
     120
     121    /*
    116122     * Lazy initialize the spinlock.
    117123     */
  • trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp

    r8245 r9416  
    285285{
    286286    /*
     287     * We don't support the fancy MP features.
     288     */
     289    if (fFlags & RTTIMER_FLAGS_CPU_SPECIFIC)
     290        return VERR_NOT_SUPPORTED;
     291
     292    /*
    287293     * Check if timer is busy.
    288294     */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette