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

« back to all changes in this revision

Viewing changes to source/clients/qconf/sge_cuser_qconf.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_CUSER_QCONF
 
2
#define __SGE_CUSER_QCONF
 
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
 
 
35
#include "gdi/sge_gdi_ctx.h"
 
36
 
 
37
lListElem *cuser_get_via_gdi(sge_gdi_ctx_class_t *ctx, lList **answer_list, const char *cuser);
 
38
 
 
39
bool cuser_add_del_mod_via_gdi(sge_gdi_ctx_class_t *ctx, lListElem *this_elem, lList **answer_list,
 
40
                               u_long32 gdi_command);
 
41
 
 
42
bool cuser_provide_modify_context(sge_gdi_ctx_class_t *ctx,
 
43
                                  lListElem **this_elem,
 
44
                                  lList **answer_list);
 
45
 
 
46
bool cuser_show(sge_gdi_ctx_class_t *ctx, lList **answer_list, const char *name);
 
47
 
 
48
bool cuser_add(sge_gdi_ctx_class_t *ctx, lList **answer_list, const char *name);
 
49
 
 
50
bool cuser_modify(sge_gdi_ctx_class_t *ctx, lList **answer_list, const char *name);
 
51
 
 
52
bool cuser_delete(sge_gdi_ctx_class_t *ctx, lList **answer_list, const char *name);
 
53
 
 
54
bool cuser_add_from_file(sge_gdi_ctx_class_t *ctx, lList **answer_list, const char *filename);
 
55
 
 
56
bool cuser_modify_from_file(sge_gdi_ctx_class_t *ctx, lList **answer_list, const char *filename);
 
57
 
 
58
#endif /* __SGE_CUSER_QCONF */