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

« back to all changes in this revision

Viewing changes to source/libs/sgeobj/sge_var.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_VAR_H
 
2
#define __SGE_VAR_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
#include "sge_varL.h"
 
36
 
 
37
#define VAR_PREFIX "__SGE_PREFIX__"
 
38
#define VAR_PREFIX_NR "__SGE_PREFIX2__"
 
39
 
 
40
void var_list_dump_to_file(const lList *varl, FILE *file);
 
41
 
 
42
void var_list_copy_env_vars_and_value(lList **varl,
 
43
                                      const lList* src_varl);
 
44
 
 
45
void var_list_copy_prefix_vars(lList **varl, 
 
46
                               const lList *src_varl,
 
47
                               const char *prefix, 
 
48
                               const char *new_prefix);
 
49
 
 
50
void var_list_copy_prefix_vars_undef(lList **varl, 
 
51
                                     const lList *src_varl,
 
52
                                     const char *prefix, 
 
53
                                     const char *new_prefix);
 
54
 
 
55
const char* var_list_get_string(lList *varl, const char *name);
 
56
 
 
57
void var_list_set_string(lList **varl, const char *name, const char *value);
 
58
void var_list_delete_string(lList **varl, const char *name);
 
59
 
 
60
void var_list_set_int(lList **varl, const char *name, int value);
 
61
 
 
62
void var_list_set_sge_u32(lList **varl, const char *name, u_long32 value);
 
63
 
 
64
void var_list_set_sharedlib_path(lList **varl);
 
65
 
 
66
const char *var_get_sharedlib_path_name(void);
 
67
 
 
68
void var_list_remove_prefix_vars(lList **varl, const char *prefix);
 
69
 
 
70
void var_list_split_prefix_vars(lList **varl,
 
71
                                lList **pefix_vars,
 
72
                                const char *prefix);
 
73
 
 
74
int var_list_add_as_set(lList *varl, lList *vars);
 
75
 
 
76
bool var_list_verify(const lList *lp, lList **answer_list);
 
77
 
 
78
#endif /* __SGE_VAR_H */