home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / main.bin / threads_md.h < prev    next >
C/C++ Source or Header  |  1997-11-24  |  3KB  |  75 lines

  1. /*
  2.  * @(#)threads_md.h    1.25 97/10/07
  3.  * 
  4.  * Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  * CopyrightVersion 1.1_beta
  20.  * 
  21.  */
  22.  
  23. /*
  24.  * Win32 implementation of Java threads
  25.  */
  26.  
  27. #ifndef _WIN32_THREADS_MD_H_
  28. #define _WIN32_THREADS_MD_H_
  29.  
  30. #include <windows.h>
  31. #include "bool.h"
  32. #include "sysmacros_md.h"
  33.  
  34. #define N_TRACED_REGS 7
  35.  
  36. #define SYS_THREAD_NULL         ((sys_thread_t *) 0)
  37.  
  38. /*
  39.  * Machine dependent info in a sys_thread_t: Keep these values in
  40.  * sync with the string array used by sysThreadDumpInfo() in threads_md.c!
  41.  */
  42. typedef enum {
  43.     FIRST_THREAD_STATE,
  44.     RUNNABLE = FIRST_THREAD_STATE,
  45.     SUSPENDED,
  46.     MONITOR_WAIT,
  47.     CONDVAR_WAIT,
  48.     MONITOR_SUSPENDED,
  49.     NUM_THREAD_STATES
  50. } thread_state_t;
  51.  
  52. /*
  53.  * Machine dependent thread data structure
  54.  */
  55. typedef struct sys_thread {
  56.     void *cookie;            /* Back-pointer to shared thread struct */
  57.     HANDLE handle;            /* Win32 thread handle */
  58.     unsigned long id;           /* Win32 thread id */
  59.     void *stack_base;           /* Thread stack base */
  60.     thread_state_t state;        /* Current thread state */
  61.     bool_t system_thread;        /* TRUE if this is a system thread */
  62.     HANDLE interrupt_event;        /* Event signaled on thread interrupt */
  63.     bool_t interrupted;            /* Shadow thread interruption */
  64.     bool_t vmsuspended;            /* This thread is suspended */
  65.     void *(*start_proc)(void *);    /* Thread start routine address */
  66.     void *start_parm;            /* Thread start routine parameter */
  67.     struct sys_thread *next;        /* Next thread in active thread queue */
  68.     unsigned int cacheKey;          /* Key for monitor being looked up */
  69.     void * monitorCache[SYS_TLS_MONCACHE]; /* cache of recently monitors */
  70. } sys_thread_t;
  71.  
  72. extern bool_t ThreadsInitialized;
  73.  
  74. #endif /* !_WIN32_THREADS_MD_H_ */
  75.