Ignore:
Timestamp:
Apr 14, 2011, 7:32:42 PM (14 years ago)
Author:
David Azarewicz
Message:

merge interrupt fixes from trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-2.1.x/drv32/strategy.c

    r548 r550  
    4444extern "C" BOOL fRewired; //pci.c
    4545
    46 DBGINT DbgInt;
     46extern "C" DBGINT DbgInt;
    4747
    4848//******************************************************************************
     
    7272
    7373        memset(&DbgInt, 0, sizeof(DbgInt));
     74        DbgPrintIrq();
    7475
    7576        RPInit __far* rp = (RPInit __far*)_rp;
    7677        rc = DiscardableInit(rp);
    7778        //dprintf(("StratInit End rc=%d", rc));
    78         DbgInt.usState = 1;
     79        DbgPrintIrq();
     80        DbgInt.ulState = 1;
    7981        return rc;
    8082}
     
    8991#pragma on (unreferenced)
    9092{
    91         DbgInt.usState = 2;
     93        DbgInt.ulState = 2;
    9294#ifdef ACPI
    9395        PciAdjustInterrupts();
    9496#endif
    95         rprintf(("StratInitComplete: Init=%ld/%ld Between=%ld/%ld Complete=%ld/%ld",
    96                 DbgInt.ulIntServiced[0], DbgInt.ulIntUnserviced[0],
    97                 DbgInt.ulIntServiced[1], DbgInt.ulIntUnserviced[1],
    98                 DbgInt.ulIntServiced[2], DbgInt.ulIntUnserviced[2]));
     97        DbgPrintIrq();
    9998        //dprintf(("StratInitComplete"));
    10099        return(RPDONE);
     
    176175                rprintf(("Strategy: Resuming"));
    177176                OSS32_APMResume();
     177                DbgPrintIrq();
    178178        }
    179179
Note: See TracChangeset for help on using the changeset viewer.