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

« back to all changes in this revision

Viewing changes to source/libs/sched/sge_orders.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_ORDERS_H_
 
2
#define _SGE_ORDERS_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 "cull.h"
 
36
#include "evc/sge_event_client.h"
 
37
 
 
38
typedef struct {
 
39
   lList *configOrderList;   /* Type: ORT_unsuspend_on_threshold, ORT_suspend_on_threshold */
 
40
   lList *pendingOrderList;  /* Type: ORT_tickets, ORT_ptickets, ORT_remove_job, ORT_update_user_usage, 
 
41
                                      ORT_update_project_usage, ORT_share_tree, ORT_sched_conf */
 
42
   lList *jobStartOrderList; /* Type: ORT_remove_immediate_job, job start orders, job info orders */
 
43
   lList *sentOrderList;     /* already send job start orders, need to get a correct order 
 
44
                                amount for the profiling. It is also needed for a warring
 
45
                                message, which informs about policy conflict:
 
46
                                MSG_SUBORDPOLICYCONFLICT_UUSS */
 
47
   u_long32 numberSendOrders; /* number of send orders */
 
48
   u_long32 numberSendPackages; /* number sends inbetween */
 
49
}order_t;
 
50
 
 
51
#define ORDER_INIT {NULL,NULL,NULL, NULL, 0, 0}
 
52
 
 
53
 
 
54
lList *sge_add_schedd_info(lList *or_list, int *global_mes_count, int *job_mes_count);
 
55
 
 
56
lList *sge_create_orders(lList *or_list, u_long32 type, lListElem *job, lListElem *ja_task, 
 
57
                         lList *queue_list, bool update_execd);
 
58
 
 
59
lList *create_delete_job_orders(lList *finished_jobs, lList *order_list);
 
60
 
 
61
lList *sge_join_orders(order_t *orders);
 
62
int sge_GetNumberOfOrders(order_t *orders); 
 
63
 
 
64
int sge_send_orders2master(sge_evc_class_t *evc, lList **orders);
 
65
 
 
66
#if 0
 
67
int sge_send_job_start_orders(sge_evc_class_t *evc, order_t *orders);
 
68
#endif
 
69
 
 
70
#endif /* _SGE_ORDERS_H_ */
 
71
 
 
72
 
 
73