Ignore:
Timestamp:
Apr 3, 2013, 11:13:13 PM (12 years ago)
Author:
David Azarewicz
Message:

Makefile updates
Debug output improvements
Support for ACPI suspend/resume added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/apm.c

    r87 r153  
    105105  int d;
    106106
     107  if (suspended) return;
    107108  dprintf("apm_suspend()\n");
    108109
     
    140141  }
    141142
     143  suspended = 1;
    142144  dprintf("apm_suspend() finished\n");
    143145}
     
    151153  int a;
    152154
     155  if (!suspended) return;
    153156  dprintf("apm_resume()\n");
    154157
     
    172175  }
    173176
     177  suspended = 0;
    174178  dprintf("apm_resume() finished\n");
    175179}
Note: See TracChangeset for help on using the changeset viewer.