Ignore:
Timestamp:
Apr 9, 2006, 12:09:39 PM (19 years ago)
Author:
vladest
Message:

Latest ALSA patches
HDA patches
Patch for Intel from Rudy's
Fixes locks on NM256 chipsets
Fixes PM on Maestro3 chipsets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/lib32/stack.cpp

    r32 r76  
    7777        //allocate our private stack
    7878        rc = DevVMAlloc(VMDHA_USEHIGHMEM|VMDHA_FIXED|VMDHL_CONTIGUOUS, TOTAL_STACKSIZE, (LINEAR)-1, (LINEAR)&StackBase);
     79
    7980        if(rc) {
    80             DebugInt3();
    81             return 0;
     81            if (rc == 87)
     82            {
     83                rc = DevVMAlloc(VMDHA_FIXED|VMDHL_CONTIGUOUS, TOTAL_STACKSIZE, (LINEAR)-1, (LINEAR)&StackBase);
     84            }
     85            if (rc)
     86            {
     87                DebugInt3();
     88                return 0;
     89            }
    8290        }
    8391        Ring0Stack[0].addr = StackBase;
Note: See TracChangeset for help on using the changeset viewer.