~ubuntu-branches/ubuntu/jaunty/pvm/jaunty

« back to all changes in this revision

Viewing changes to console/job.h

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2005-10-06 15:25:03 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051006152503-nty60w30a9dja62m
Tags: 3.4.5-5
Use --remove-all on pvm-rsh alternative in prerm instead of --remove.
(Closes: #328366)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
/* $Id: job.h,v 1.7 1999/07/08 18:59:41 kohl Exp $ */
 
2
/* $Id: job.h,v 1.8 2000/02/15 18:06:21 pvmsrc Exp $ */
3
3
 
4
4
/*
5
5
 *         PVM version 3.4:  Parallel Virtual Machine System
35
35
 *      Job descriptors.
36
36
 *
37
37
 * $Log: job.h,v $
 
38
 * Revision 1.8  2000/02/15 18:06:21  pvmsrc
 
39
 * Modified jobs_cmd() to dump task ids for traced jobs...
 
40
 *      - can't use output buffers, must use TRC_ID->tevtask_list list.
 
41
 *      - snagged necessary state constants from trclib.h, can't just
 
42
 *              #include it, as it #includes fricking everything...  :-Q
 
43
 * (Spanker=kohl)
 
44
 *
38
45
 * Revision 1.7  1999/07/08 18:59:41  kohl
39
46
 * Fixed "Log" keyword placement.
40
47
 *      - indent with " * " for new CVS.
93
100
#define GOTSPAWN        1
94
101
#define GOTEOF          2
95
102
 
 
103
/* Task Trace Status Constants - copied from trclib.h */
 
104
#define TRC_TASK_NOLIFE     0
 
105
#define TRC_TASK_ALIVE      1
 
106
#define TRC_TASK_DEAD       2
 
107
#define TRC_TASK_IGNORE     3
 
108
#define TRC_TASK_WAITEND    4
 
109
 
 
110
/* Task Output Status Constants - also copied from trclib.h */
 
111
#define TRC_TASK_NOOUT      0
 
112
#define TRC_TASK_OUT        1
 
113
#define TRC_TASK_EOF        2
 
114
#define TRC_TASK_WAITEOF    3
 
115
 
96
116
#define HostsAddedTag   0
97
117
#define MyExitTag               1
98
118
#define TrcHostAddTag   2