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

« back to all changes in this revision

Viewing changes to source/libs/sched/sge_qetiL.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_QETIL_H
 
2
#define __SGE_QETIL_H
 
3
 
 
4
/*___INFO__MARK_BEGIN__*/
 
5
/*************************************************************************
 
6
 * 
 
7
 *  The Contents of this file are made available subject to the terms of
 
8
 *  the Sun Industry Standards Source License Version 1.2
 
9
 * 
 
10
 *  Sun Microsystems Inc., March, 2001
 
11
 * 
 
12
 * 
 
13
 *  Sun Industry Standards Source License Version 1.2
 
14
 *  =================================================
 
15
 *  The contents of this file are subject to the Sun Industry Standards
 
16
 *  Source License Version 1.2 (the "License"); You may not use this file
 
17
 *  except in compliance with the License. You may obtain a copy of the
 
18
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
19
 * 
 
20
 *  Software provided under this License is provided on an "AS IS" basis,
 
21
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
22
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
23
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
24
 *  See the License for the specific provisions governing your rights and
 
25
 *  obligations concerning the Software.
 
26
 * 
 
27
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
28
 * 
 
29
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
30
 * 
 
31
 *   All Rights Reserved.
 
32
 * 
 
33
 ************************************************************************/
 
34
/*___INFO__MARK_END__*/
 
35
 
 
36
#include "sge_boundaries.h"
 
37
#include "cull.h"
 
38
 
 
39
#ifdef  __cplusplus
 
40
extern "C" {
 
41
#endif
 
42
 
 
43
/* *INDENT-OFF* */ 
 
44
 
 
45
/****** sgeobj/QETI/--QETI_Type **************************************************
 
46
*  NAME
 
47
*     QETI_Type - Queue End Time Iterator building blocks
 
48
*
 
49
*  ELEMENTS
 
50
*
 
51
*     SGE_DOUBLE(QETI_total)
 
52
*        Keeps information about total amount of the resource instance.
 
53
*        It would be nice if that in information were also contained in
 
54
*        the RUE_Type element referenced via the resource utilization 
 
55
*        entry QETI_resource_instance. Unfortunately this is not the 
 
56
*        case so we keep it here separately.
 
57
*
 
58
*     SGE_REF(QETI_resource_instance)
 
59
*        Reference to a resource utilization entry (RUE_Type element) that keeps 
 
60
*        all information about resource utilization of a particular resource
 
61
*        instance.
 
62
*
 
63
*     SGE_REF(QETI_queue_end_next)
 
64
*        Reference to the next entry in the resource utilization diagram 
 
65
*        (RDE_Type elemnt). All next pointers related to all resource instances
 
66
*        represent the state of a sge_qeti_t iterator.
 
67
*
 
68
*  FUNCTION
 
69
*     Qeti != Yeti 
 
70
*
 
71
*  SEE ALSO
 
72
******************************************************************************/
 
73
enum {
 
74
   QETI_total = QETI_LOWERBOUND,
 
75
   QETI_resource_instance,
 
76
   QETI_queue_end_next
 
77
};
 
78
 
 
79
LISTDEF(QETI_Type)
 
80
   SGE_DOUBLE(QETI_total, CULL_DEFAULT)
 
81
   SGE_REF(QETI_resource_instance, RUE_Type, CULL_DEFAULT)
 
82
   SGE_REF(QETI_queue_end_next, RDE_Type, CULL_DEFAULT)
 
83
LISTEND 
 
84
 
 
85
NAMEDEF(QETIN)
 
86
   NAME("QETI_total")
 
87
   NAME("QETI_resource_instance")
 
88
   NAME("QETI_queue_end_next")
 
89
NAMEEND
 
90
 
 
91
#define QETIS sizeof(QETIN)/sizeof(char*)
 
92
 
 
93
#ifdef  __cplusplus
 
94
}
 
95
#endif
 
96
#endif                          /* __SGE_QETIL_H */
 
97