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

« back to all changes in this revision

Viewing changes to source/libs/cull/boundaries.h.txt

  • 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
/*************************************************************************"
 
4
 * "
 
5
 *  The Contents of this file are made available subject to the terms of"
 
6
 *  the Sun Industry Standards Source License Version 1.2"
 
7
 * "
 
8
 *  Sun Microsystems Inc., March, 2001"
 
9
 * "
 
10
 * "
 
11
 *  Sun Industry Standards Source License Version 1.2"
 
12
 *  ================================================="
 
13
 *  The contents of this file are subject to the Sun Industry Standards"
 
14
 *  Source License Version 1.2 (the \"License\"); You may not use this file"
 
15
 *  except in compliance with the License. You may obtain a copy of the"
 
16
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html"
 
17
 * "
 
18
 *  Software provided under this License is provided on an \"AS IS\" basis,"
 
19
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,"
 
20
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,"
 
21
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING."
 
22
 *  See the License for the specific provisions governing your rights and"
 
23
 *  obligations concerning the Software."
 
24
 * "
 
25
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc."
 
26
 * "
 
27
 *   Copyright: 2001 by Sun Microsystems, Inc."
 
28
 * "
 
29
 *   All Rights Reserved."
 
30
 * "
 
31
 ************************************************************************/"
 
32
 
 
33
/*
 
34
   THIS IS AN EXAMPLE FOR THE BOUNDARIES HEADER FILE
 
35
 
 
36
        There are different 'name intervals' reserved for special internal
 
37
        structs (lists).
 
38
        The LOWERBOUND & UPPERBOUND values restrict the namespaces to a defined 
 
39
        number of maximal fields.
 
40
        The user is offered 'user ?? areas'. One restriction to be maintained is
 
41
        that the maximum UPPERBOUND is smaller than the MAXINT value.
 
42
        Basic unit is only for easier extension used. If it is changed one has
 
43
        to recompile all clients. The compatibility is no longer kept.
 
44
 
 
45
   
 
46
 
 
47
*/
 
48
        
 
49
#define BASIC_UNIT 1000 /* Don't touch */
 
50
 
 
51
enum NameSpaceBoundaries {
 
52
        Q_LOWERBOUND    =       1,
 
53
        Q_UPPERBOUND    =       Q_LOWERBOUND + 1*BASIC_UNIT-1,
 
54
 
 
55
        N_LOWERBOUND    =       1*BASIC_UNIT+1,
 
56
        N_UPPERBOUND    =       N_LOWERBOUND + 2*BASIC_UNIT-1,
 
57
 
 
58
        C_LOWERBOUND    =       2*BASIC_UNIT+1,
 
59
        C_UPPERBOUND    =       C_LOWERBOUND + 3*BASIC_UNIT-1,
 
60
        
 
61
        A_LOWERBOUND    =       3*BASIC_UNIT+1,
 
62
        A_UPPERBOUND    =       A_LOWERBOUND + 4*BASIC_UNIT-1,
 
63
 
 
64
        J_LOWERBOUND    =       4*BASIC_UNIT+1,
 
65
        J_UPPERBOUND    =       J_LOWERBOUND + 5*BASIC_UNIT-1,
 
66
 
 
67
        R_LOWERBOUND    =       5*BASIC_UNIT+1,
 
68
        R_UPPERBOUND    =       R_LOWERBOUND + 6*BASIC_UNIT-1, 
 
69
 
 
70
        O_LOWERBOUND    =       6*BASIC_UNIT+1,
 
71
        O_UPPERBOUND    =       O_LOWERBOUND + 7*BASIC_UNIT-1,
 
72
 
 
73
        H_LOWERBOUND    =       7*BASIC_UNIT+1,
 
74
        H_UPPERBOUND    =       H_LOWERBOUND + 8*BASIC_UNIT-1,
 
75
 
 
76
/* USER RESERVED AREAS */
 
77
 
 
78
        U1_LOWERBOUND  =  20*BASIC_UNIT+1,
 
79
        U1_UPPERBOUND  =  U1_LOWERBOUND + 19*BASIC_UNIT-1,
 
80
 
 
81
        U2_LOWERBOUND  =  21*BASIC_UNIT+1,
 
82
        U2_UPPERBOUND  =  U2_LOWERBOUND + 20*BASIC_UNIT-1,
 
83
 
 
84
        U3_LOWERBOUND  =  22*BASIC_UNIT+1,
 
85
        U3_UPPERBOUND  =  U3_LOWERBOUND + 21*BASIC_UNIT-1
 
86
};
 
87
 
 
88
#endif /* __BOUNDARIES_H */