home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / config / i386 / win32 / threads.h < prev   
C/C++ Source or Header  |  1996-09-28  |  914b  |  38 lines

  1. /*
  2.  * i386/win95/threads.h
  3.  * i386 threading information.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
  12.  */
  13.  
  14. #ifndef __i386_win95_threads_h
  15. #define __i386_win95_threads_h
  16.  
  17. /**/
  18. /* Thread handling */
  19. /**/
  20. #define    USE_INTERNAL_THREADS
  21.  
  22. struct _ctx;
  23. struct _thread;
  24.  
  25. void threadSwitch(struct _ctx*, struct _ctx*);
  26. void threadInit(struct _ctx*, void*);
  27. void threadInfo(struct _ctx*);
  28. int threadFrames(struct _thread*);
  29.  
  30. #define    THREADSTACKSIZE        (32 * 1024)
  31.  
  32. #define    THREADSWITCH(to, from)    threadSwitch(to, from)
  33. #define    THREADINIT(to, func)    threadInit(to, func)
  34. #define    THREADINFO(ee)        threadInfo(ee)
  35. #define    THREADFRAMES(tid, cnt)    cnt = threadFrames(tid)
  36.  
  37. #endif
  38.