* Chill runtime moved into toplevel libchill.
[gcc.git] / libchill / rts.h
1 /* GNU CHILL compiler regression test file
2 Copyright (C) 1992, 1993 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #ifndef __rts_h_
21 #define __rts_h_
22
23 typedef enum
24 {
25 UNUSED,
26 Process,
27 Signal,
28 Buffer,
29 Event,
30 Synonym,
31 Exception,
32 LAST_AND_UNUSED,
33 } TaskingEnum;
34
35 typedef void (*EntryPoint) ();
36
37 typedef struct
38 {
39 char *name;
40 short *value;
41 int value_defined;
42 EntryPoint entry;
43 unsigned char /*TaskingEnum*/ type;
44 } TaskingStruct;
45
46 typedef struct
47 {
48 short ptype;
49 short pcopy;
50 } INSTANCE;
51
52 #endif /* __rts_h_ */