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

« back to all changes in this revision

Viewing changes to source/daemons/qmaster/sge_cqueue_qmaster.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_CQUEUE_QMASTER_H_
 
2
#define _SGE_CQUEUE_QMASTER_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_c_gdi.h"
 
36
#include "uti/sge_monitor.h"
 
37
#include "gdi/sge_gdi_ctx.h"
 
38
 
 
39
bool
 
40
cqueue_mod_qinstances(sge_gdi_ctx_class_t *ctx,
 
41
                      lListElem *cqueue, lList **answer_list,
 
42
                      lListElem *reduced_elem, bool refresh_all_values, 
 
43
                      bool is_startup, monitoring_t *monitor);
 
44
 
 
45
bool
 
46
cqueue_handle_qinstances(sge_gdi_ctx_class_t *ctx,
 
47
                         lListElem *cqueue, lList **answer_list,
 
48
                         lListElem *reduced_elem, lList *add_hosts,
 
49
                         lList *rem_hosts, bool refresh_all_values,
 
50
                         monitoring_t *monitor);
 
51
 
 
52
void 
 
53
cqueue_commit(sge_gdi_ctx_class_t *ctx, lListElem *cqueue);
 
54
 
 
55
void 
 
56
cqueue_rollback(lListElem *cqueue);
 
57
 
 
58
int 
 
59
cqueue_success(sge_gdi_ctx_class_t *ctx, lListElem *ep, lListElem *old_ep, gdi_object_t *object, lList **ppList, monitoring_t *monitor);
 
60
 
 
61
int 
 
62
cqueue_mod(sge_gdi_ctx_class_t *ctx,
 
63
           lList **alpp, lListElem *modp, lListElem *ep, int add, 
 
64
           const char *ruser, const char *rhost, gdi_object_t *object,
 
65
           int sub_command, monitoring_t *monitor);
 
66
 
 
67
int 
 
68
cqueue_spool(sge_gdi_ctx_class_t *ctx, lList **alpp, lListElem *this_elem, gdi_object_t *object);
 
69
 
 
70
int 
 
71
cqueue_del(sge_gdi_ctx_class_t *ctx, lListElem *this_elem, lList **alpp, char *ruser, char *rhost);
 
72
 
 
73
bool
 
74
cqueue_del_all_orphaned(sge_gdi_ctx_class_t *ctx, lListElem *this_elem, lList **answer_list, const char *ehname);
 
75
 
 
76
bool
 
77
cqueue_list_del_all_orphaned(sge_gdi_ctx_class_t *ctx, lList *this_list, lList **answer_list, const char *cqname, const char *ehname);
 
78
 
 
79
void
 
80
cqueue_list_set_unknown_state(lList *this_list, const char *hostname,
 
81
                              bool send_events, bool is_unknown);
 
82
 
 
83
void cqueue_diff_projects(const lListElem *new, const lListElem *old, lList **new_prj, lList **old_prj);
 
84
void cqueue_diff_usersets(const lListElem *new, const lListElem *old, lList **new_acl, lList **old_acl);
 
85
 
 
86
#endif /* _SGE_CQUEUE_QMASTER_H_ */
 
87