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

« back to all changes in this revision

Viewing changes to source/libs/cull/boundaries.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 __BOUNDARIES_H
 
2
#define __BOUNDARIES_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
   THIS IS AN EXAMPLE FOR THE BOUNDARIES HEADER FILE
 
37
 
 
38
   There are different 'name intervals' reserved for special internal
 
39
   structs (lists).
 
40
   The LOWERBOUND & UPPERBOUND values restrict the namespaces to a defined 
 
41
   number of maximal fields.
 
42
   The user is offered 'user ?? areas'. One restriction to be maintained is
 
43
   that the maximum UPPERBOUND is smaller than the MAXINT value.
 
44
   Basic unit is only for easier extension used. If it is changed one has
 
45
   to recompile all clients. The compatibility is no longer kept.
 
46
 */
 
47
 
 
48
#define EXAMPLE_BASIC_UNIT 1000         /* Don't touch */
 
49
 
 
50
enum NameSpaceBoundaries {
 
51
   Q_LOWERBOUND = 1,
 
52
   Q_UPPERBOUND = Q_LOWERBOUND + 1 * EXAMPLE_BASIC_UNIT - 1,
 
53
 
 
54
   N_LOWERBOUND = 1 * EXAMPLE_BASIC_UNIT + 1,
 
55
   N_UPPERBOUND = N_LOWERBOUND + 2 * EXAMPLE_BASIC_UNIT - 1,
 
56
 
 
57
   C_LOWERBOUND = 2 * EXAMPLE_BASIC_UNIT + 1,
 
58
   C_UPPERBOUND = C_LOWERBOUND + 3 * EXAMPLE_BASIC_UNIT - 1,
 
59
 
 
60
   A_LOWERBOUND = 3 * EXAMPLE_BASIC_UNIT + 1,
 
61
   A_UPPERBOUND = A_LOWERBOUND + 4 * EXAMPLE_BASIC_UNIT - 1,
 
62
 
 
63
   J_LOWERBOUND = 4 * EXAMPLE_BASIC_UNIT + 1,
 
64
   J_UPPERBOUND = J_LOWERBOUND + 5 * EXAMPLE_BASIC_UNIT - 1,
 
65
 
 
66
   R_LOWERBOUND = 5 * EXAMPLE_BASIC_UNIT + 1,
 
67
   R_UPPERBOUND = R_LOWERBOUND + 6 * EXAMPLE_BASIC_UNIT - 1,
 
68
 
 
69
   O_LOWERBOUND = 6 * EXAMPLE_BASIC_UNIT + 1,
 
70
   O_UPPERBOUND = O_LOWERBOUND + 7 * EXAMPLE_BASIC_UNIT - 1,
 
71
 
 
72
   H_LOWERBOUND = 7 * EXAMPLE_BASIC_UNIT + 1,
 
73
   H_UPPERBOUND = H_LOWERBOUND + 8 * EXAMPLE_BASIC_UNIT - 1,
 
74
 
 
75
/* USER RESERVED AREAS */
 
76
 
 
77
   U1_LOWERBOUND = 20 * EXAMPLE_BASIC_UNIT + 1,
 
78
   U1_UPPERBOUND = U1_LOWERBOUND + 19 * EXAMPLE_BASIC_UNIT - 1,
 
79
 
 
80
   U2_LOWERBOUND = 21 * EXAMPLE_BASIC_UNIT + 1,
 
81
   U2_UPPERBOUND = U2_LOWERBOUND + 20 * EXAMPLE_BASIC_UNIT - 1,
 
82
 
 
83
   U3_LOWERBOUND = 22 * EXAMPLE_BASIC_UNIT + 1,
 
84
   U3_UPPERBOUND = U3_LOWERBOUND + 21 * EXAMPLE_BASIC_UNIT - 1
 
85
};
 
86
 
 
87
#endif /* __BOUNDARIES_H */