Ignore:
Timestamp:
May 31, 2013, 2:03:41 AM (12 years ago)
Author:
David Azarewicz
Message:

fixed trap dump kernel exit, some work on suspend/resume routines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/os2ahci.h

    r157 r160  
    3434 */
    3535
     36#define DEBUG
    3637#define INCL_NOPMAPI
    3738#define INCL_DOSINFOSEG
     
    104105
    105106/* debug output macros */
     107#ifdef DEBUG
    106108#define dprintf   if (debug > 0) printf
    107109#define dphex     if (debug > 0) phex
     
    110112#define dddprintf if (debug > 2) printf
    111113#define dddphex   if (debug > 2) phex
     114#define ntprintf printf_nts
     115#define aprintf printf
     116#else
     117#define dprintf(a,...)
     118#define dphex(a,b,c,...)
     119#define ddprintf(a,...)
     120#define ddphex(a,b,c,...)
     121#define dddprintf(a,...)
     122#define dddphex(a,b,c,...)
     123#define ntprintf(a,...)
     124#define aprintf(a,...)
     125#endif
    112126
    113127/* verbosity console print macros
     
    561575/* apm.c */
    562576extern void        apm_init           (void);
    563 extern void        apm_suspend        (void);
    564 extern void        apm_resume         (void);
     577extern void        suspend        (void);
     578extern void        resume         (void);
    565579
    566580/* ioctl.c */
Note: See TracChangeset for help on using the changeset viewer.