home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Include / asm / current.h < prev    next >
C/C++ Source or Header  |  2002-04-26  |  324b  |  14 lines

  1. /* $Id: current.h,v 1.2 2002/04/26 23:09:18 smilcke Exp $ */
  2.  
  3. #ifndef _I386_CURRENT_H
  4. #define _I386_CURRENT_H
  5.  
  6. #if (defined(TARGET_OS2) && !defined(NOOS2LXAPI))
  7. extern struct task_struct **__current;
  8. #define current (*__current)
  9. #else
  10. extern struct task_struct *current;
  11. #endif
  12.  
  13. #endif /* !(_I386_CURRENT_H) */
  14.