1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/*
* SCCS: @(#)xtab.h 1.6 (96/11/04)
*
* UniSoft Ltd., London, England
*
* (C) Copyright 1992 X/Open Company Limited
*
* All rights reserved. No part of this source code may be reproduced,
* stored in a retrieval system, or transmitted, in any form or by any
* means, electronic, mechanical, photocopying, recording or otherwise,
* except as stated in the end-user licence agreement, without the prior
* permission of the copyright owners.
*
* X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
* the UK and other countries.
*/
/************************************************************************
SCCS: @(#)xtab.h 1.6 96/11/04 TETware release 3.3
NAME: xtab.h
PRODUCT: TETware
AUTHOR: Andrew Dingwall, UniSoft Ltd.
DATE CREATED: April 1992
DESCRIPTION:
execution results file table description
MODIFICATIONS:
Andrew Dingwall, UniSoft Ltd., November 1994
perform Abort processing as each result is registered
************************************************************************/
/*
** Execution results file table.
**
** An element is allocated in the execution results file table for each
** execution results file (xres file) opened by a call to OP_XROPEN.
** Storage for an element is allocated by xtalloc() and freed by
** xtfree().
** An element is added to the table by xtadd() and removed by xtrm().
*/
/* per-user details structure for the execution results file table
(really per-system since there can be more than one process per system)
*/
struct uxtab {
int ux_sysid; /* system id */
struct ptab *ux_ptab; /* ptr to first user's ptab entry */
int ux_state; /* process state - see below */
int ux_result; /* TP result code */
};
/* values for ux_state (discrete values) */
#define XS_NOTREPORTED 1
#define XS_REPORTED 2
#define XS_DEAD 3
/*
** structure of the execution results file table
**
** the next and last pointers must be first so as to allow the
** use of the llist routines to manipulate the table
*/
struct xtab {
struct xtab *xt_next; /* ptr to next element in list */
struct xtab *xt_last; /* ptr to last element in list */
long xt_xrid; /* id for xres requests */
struct ptab *xt_ptab; /* ptr to owner's ptab */
char *xt_xfname; /* tet_xres file name */
FILE *xt_xfp; /* fp for tet_xres file */
struct uxtab *xt_ud; /* ptr to per-user details */
int xt_nud; /* no of active xt_ud elements */
int xt_udlen; /* no of bytes in xt_ud */
int xt_icno; /* current IC number */
long xt_activity; /* current TCC activity number */
int xt_tpcount; /* expected number of TPs in this IC */
int xt_tpno; /* current TP number */
int xt_result; /* TP result */
int xt_flags; /* flags - see below */
};
/* values for xt_flags (a bit field) */
#define XF_ICINPROGRESS 001 /* IC is in progress */
#define XF_ICDONE 002 /* IC finished */
#define XF_TPINPROGRESS 004 /* TP is in progress */
#define XF_TPDONE 010 /* TP finished */
#define XF_TCABORT 020 /* return ER_ABORT in tpend() */
/* extern function declarations */
extern int icend PROTOLIST((struct xtab *));
extern int tpend PROTOLIST((struct xtab *));
extern int uxtalloc PROTOLIST((struct xtab *, int));
extern void xtadd PROTOLIST((struct xtab *));
extern struct xtab *xtalloc PROTOLIST((void));
extern struct xtab *xtfind PROTOLIST((long));
extern void xtfree PROTOLIST((struct xtab *));
extern void xtrm PROTOLIST((struct xtab *));
|