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

« back to all changes in this revision

Viewing changes to source/libs/sgeobj/sge_path_aliasL.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_PAL_H
 
2
#define __SGE_PAL_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/path_alias/--PA_Type *******************************************
 
46
*  NAME 
 
47
*     RN_Type - CULL path alias element
 
48
*
 
49
*  ELEMENTS
 
50
*     SGE_STRING(PA_origin)
 
51
*        original path        
 
52
*
 
53
*     SGE_HOST(PA_submit_host)
 
54
*        submit hostname
 
55
*
 
56
*     SGE_HOST(PA_exec_host)
 
57
*        destination execution host
 
58
*
 
59
*     SGE_STRING(PA_translation)
 
60
*        path translation for the original path
 
61
*
 
62
*  FUNCTION
 
63
*     CULL element holding information necessary to realize 
 
64
*     path aliasing. (Find more information in the --PathAlias
 
65
*     ADOC comment)
 
66
*
 
67
*  SEE ALSO
 
68
*     gdi/path_alias/--PathAlias
 
69
*     gdi/path_alias/path_alias_read_from_file()
 
70
*     gdi/path_alias/path_alias_list_initialize()
 
71
*     gdi/path_alias/path_alias_list_get_path()
 
72
******************************************************************************/
 
73
enum {
 
74
   PA_origin = PA_LOWERBOUND,
 
75
   PA_submit_host,
 
76
   PA_exec_host,
 
77
   PA_translation
 
78
};
 
79
 
 
80
LISTDEF(PA_Type)
 
81
   JGDI_OBJ(PathAlias)
 
82
   SGE_STRING(PA_origin, CULL_PRIMARY_KEY | CULL_DEFAULT | CULL_SPOOL)
 
83
   SGE_HOST(PA_submit_host, CULL_DEFAULT | CULL_SPOOL) 
 
84
   SGE_HOST(PA_exec_host, CULL_DEFAULT | CULL_SPOOL) 
 
85
   SGE_STRING(PA_translation, CULL_DEFAULT | CULL_SPOOL)
 
86
LISTEND 
 
87
 
 
88
NAMEDEF(PAN)
 
89
   NAME("PA_origin")
 
90
   NAME("PA_submit_host")
 
91
   NAME("PA_exec_host")
 
92
   NAME("PA_translation")
 
93
NAMEEND
 
94
 
 
95
/* *INDENT-ON* */  
 
96
 
 
97
#define PAS sizeof(PAN)/sizeof(char*)
 
98
#ifdef  __cplusplus
 
99
}
 
100
#endif
 
101
#endif                          /* __SGE_PAL_H */