VirtualBox

Changeset 403 in vbox for trunk/src/VBox/Runtime/r3


Ignore:
Timestamp:
Jan 28, 2007 8:45:05 AM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
17974
Message:

Need RTThreadWait in ring-0 too when using the generic timers, so thread.cpp was ported to ring-0. Fixed a bug in RTTimerStart() (the generic code). (hope this doesn't break the other platforms...)

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp

    r1 r403  
    124124 * to only be lowering the priority.
    125125 */
    126 static const PROCPRIORITYTYPE g_aTypesLinuxFree[RTTHREADTYPE_LAST] =
     126static const PROCPRIORITYTYPE g_aTypesLinuxFree[RTTHREADTYPE_END] =
    127127{
    128128    { RTTHREADTYPE_INVALID,                 -999999999 },
     
    143143 * Deltas for a process in which we are restricted and can only lower the priority.
    144144 */
    145 static const PROCPRIORITYTYPE g_aTypesLinuxRestricted[RTTHREADTYPE_LAST] =
     145static const PROCPRIORITYTYPE g_aTypesLinuxRestricted[RTTHREADTYPE_END] =
    146146{
    147147    { RTTHREADTYPE_INVALID,                 -999999999 },
     
    165165 * to the process default of a thread created by a low priority thread.
    166166 */
    167 static const PROCPRIORITYTYPE g_aTypesLinuxFlat[RTTHREADTYPE_LAST] =
     167static const PROCPRIORITYTYPE g_aTypesLinuxFlat[RTTHREADTYPE_END] =
    168168{
    169169    { RTTHREADTYPE_INVALID,                 -999999999 },
     
    465465int rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType)
    466466{
    467     Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_LAST);
     467    Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);
    468468
    469469    /*
     
    518518     */
    519519    int rc = VINF_SUCCESS;
    520     int i = RTTHREADTYPE_LAST;
     520    int i = RTTHREADTYPE_END;
    521521    while (--i > RTTHREADTYPE_INVALID)
    522522    {
     
    598598{
    599599    /* sanity */
    600     Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_LAST);
     600    Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);
    601601    Assert(enmType == g_pProcessPriority->paTypes[enmType].enmType);
    602602    Assert((pthread_t)pThread->Core.Key == pthread_self());
  • trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp

    r1 r403  
    122122 * certain).
    123123 */
    124 static const PROCPRIORITYTYPE g_aTypesThread[RTTHREADTYPE_LAST] =
     124static const PROCPRIORITYTYPE g_aTypesThread[RTTHREADTYPE_END] =
    125125{
    126126    { RTTHREADTYPE_INVALID,                 -999999999 },
     
    138138};
    139139
    140 static const PROCPRIORITYTYPE g_aTypesThreadFlat[RTTHREADTYPE_LAST] =
     140static const PROCPRIORITYTYPE g_aTypesThreadFlat[RTTHREADTYPE_END] =
    141141{
    142142    { RTTHREADTYPE_INVALID,                 ~0 },
     
    184184 * to only be lowering the priority.
    185185 */
    186 static const PROCPRIORITYTYPE g_aTypesUnixFree[RTTHREADTYPE_LAST] =
     186static const PROCPRIORITYTYPE g_aTypesUnixFree[RTTHREADTYPE_END] =
    187187{
    188188    { RTTHREADTYPE_INVALID,                 -999999999 },
     
    204204 * to only be lowering the priority.
    205205 */
    206 static const PROCPRIORITYTYPE g_aTypesUnixRestricted[RTTHREADTYPE_LAST] =
     206static const PROCPRIORITYTYPE g_aTypesUnixRestricted[RTTHREADTYPE_END] =
    207207{
    208208    { RTTHREADTYPE_INVALID,                 -999999999 },
     
    224224 * to only be lowering the priority.
    225225 */
    226 static const PROCPRIORITYTYPE g_aTypesUnixFlat[RTTHREADTYPE_LAST] =
     226static const PROCPRIORITYTYPE g_aTypesUnixFlat[RTTHREADTYPE_END] =
    227227{
    228228    { RTTHREADTYPE_INVALID,                 -999999999 },
     
    506506int rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType)
    507507{
    508     Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_LAST);
     508    Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);
    509509
    510510    /*
     
    584584                int iMin = sched_get_priority_min(SavedPriority.iPolicy);
    585585                pthread_t Self = pthread_self();
    586                 for (int i = RTTHREADTYPE_INVALID + 1; i < RTTHREADTYPE_LAST; i++)
     586                for (int i = RTTHREADTYPE_INVALID + 1; i < RTTHREADTYPE_END; i++)
    587587                {
    588588                    struct sched_param SchedParam = SavedPriority.PthreadSchedParam;
     
    607607        case OSPRIOSUP_THREAD_LEVEL:
    608608        {
    609             int i = RTTHREADTYPE_LAST;
     609            int i = RTTHREADTYPE_END;
    610610            while (--i > RTTHREADTYPE_INVALID)
    611611            {
     
    737737int rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
    738738{
    739     Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_LAST);
     739    Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);
    740740    Assert(enmType == g_pProcessPriority->paTypes[enmType].enmType);
    741741    Assert((pthread_t)pThread->Core.Key == pthread_self());
  • trunk/src/VBox/Runtime/r3/win32/sched-win32.cpp

    r1 r403  
    6161        /** The Win32 thread priority. */
    6262        DWORD           dwThreadPriority;
    63     } aTypes[RTTHREADTYPE_LAST];
     63    } aTypes[RTTHREADTYPE_END];
    6464} PROCPRIORITY;
    6565
     
    254254int rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType)
    255255{
    256     Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_LAST);
     256    Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);
    257257    return VINF_SUCCESS;
    258258}
     
    303303int rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
    304304{
    305     Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_LAST);
     305    Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END);
    306306    AssertMsg(g_pProcessPriority && g_pProcessPriority->aTypes[enmType].enmType == enmType,
    307307              ("enmType=%d entry=%d\n", enmType, g_pProcessPriority->aTypes[enmType].enmType));
Note: See TracChangeset for help on using the changeset viewer.

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