~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/sgeobj/sge_order.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __SGE_ORDER_H
 
2
#define __SGE_ORDER_H
 
3
/*___INFO__MARK_BEGIN__*/
 
4
/*************************************************************************
 
5
 * 
 
6
 *  The Contents of this file are made available subject to the terms of
 
7
 *  the Sun Industry Standards Source License Version 1.2
 
8
 * 
 
9
 *  Sun Microsystems Inc., March, 2001
 
10
 * 
 
11
 * 
 
12
 *  Sun Industry Standards Source License Version 1.2
 
13
 *  =================================================
 
14
 *  The contents of this file are subject to the Sun Industry Standards
 
15
 *  Source License Version 1.2 (the "License"); You may not use this file
 
16
 *  except in compliance with the License. You may obtain a copy of the
 
17
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
 * 
 
19
 *  Software provided under this License is provided on an "AS IS" basis,
 
20
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
 *  See the License for the specific provisions governing your rights and
 
24
 *  obligations concerning the Software.
 
25
 * 
 
26
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
 * 
 
28
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
29
 * 
 
30
 *   All Rights Reserved.
 
31
 * 
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/
 
34
 
 
35
 
 
36
/* struct containing the cull pos for fields in the ticket order */
 
37
typedef struct {
 
38
   int JAT_status_pos;
 
39
   int JAT_tix_pos;
 
40
 
 
41
   int JAT_oticket_pos;
 
42
   int JAT_fticket_pos;
 
43
   int JAT_sticket_pos;
 
44
   int JAT_share_pos;
 
45
   int JAT_prio_pos;
 
46
   int JAT_ntix_pos;   
 
47
} ja_task_pos_t;
 
48
 
 
49
 
 
50
/* struct containing the cull pos for fields in the ticket order */
 
51
typedef struct {
 
52
   int JB_version_pos;
 
53
   int JB_nppri_pos;
 
54
   int JB_nurg_pos;
 
55
   int JB_urg_pos;
 
56
   int JB_rrcontr_pos;
 
57
   int JB_dlcontr_pos;
 
58
   int JB_wtcontr_pos;
 
59
} job_pos_t;
 
60
 
 
61
 
 
62
/* struct containing the cull field position of the job target structures
 
63
   and the reduced order elements */
 
64
typedef struct {
 
65
   ja_task_pos_t ja_task;
 
66
   ja_task_pos_t order_ja_task;   
 
67
   job_pos_t   job;
 
68
   job_pos_t   order_job;
 
69
} order_pos_t;
 
70
 
 
71
void 
 
72
sge_free_cull_order_pos(order_pos_t **cull_order_pos);
 
73
 
 
74
void 
 
75
sge_create_cull_order_pos(order_pos_t **cull_order_pos, lListElem *jep, lListElem *jatp,
 
76
                          lListElem *joker, lListElem *joker_task); 
 
77
#endif /* __SGE_ORDER_H */