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

« back to all changes in this revision

Viewing changes to source/daemons/qmaster/reschedule.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 __RESCHEDULE_H
 
2
#define __RESCHEDULE_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_qmaster_timed_event.h"
 
36
#include "uti/sge_monitor.h"
 
37
#include "gdi/sge_gdi_ctx.h"
 
38
 
 
39
 
 
40
#define RESCHEDULE_SKIP_JR_REMOVE      0x00000000
 
41
#define RESCHEDULE_SKIP_JR_SEND_ACK    0x00000001
 
42
#define RESCHEDULE_SKIP_JR             0x00000002
 
43
#define RESCHEDULE_HANDLE_JR_REMOVE    0x00000004
 
44
#define RESCHEDULE_HANDLE_JR_WAIT      0x00000008
 
45
 
 
46
void reschedule_unknown_event(sge_gdi_ctx_class_t *ctx, te_event_t anEvent, monitoring_t *monitor);
 
47
 
 
48
u_long32 skip_restarted_job(lListElem *host, lListElem *job_report, u_long32 job_number, u_long32 task_number);
 
49
 
 
50
int reschedule_jobs(sge_gdi_ctx_class_t *ctx, lListElem *ep, u_long32 force, lList **answer, monitoring_t *monitor);
 
51
 
 
52
int reschedule_job(sge_gdi_ctx_class_t *ctx, lListElem *jep, lListElem *jatep, lListElem *qep, u_long32 force, lList **answer, monitoring_t *monitor);
 
53
 
 
54
lListElem* add_to_reschedule_unknown_list(sge_gdi_ctx_class_t *ctx, lListElem *hostr, u_long32 job_number, u_long32 task_number, u_long32 state);
 
55
 
 
56
void delete_from_reschedule_unknown_list(sge_gdi_ctx_class_t *ctx, lListElem *host);
 
57
 
 
58
void update_reschedule_unknown_list(sge_gdi_ctx_class_t *ctx, lListElem *host);
 
59
 
 
60
void update_reschedule_unknown_list_for_job(lListElem *host, u_long32 job_number, u_long32 task_number);        
 
61
 
 
62
void update_reschedule_unknown_timout_values(const char *config_name);
 
63
 
 
64
void reschedule_unknown_trigger(lListElem *hep); 
 
65
 
 
66
void reschedule_add_additional_time(u_long32 time); 
 
67
 
 
68
void
 
69
remove_from_reschedule_unknown_list(sge_gdi_ctx_class_t *ctx,
 
70
                                    lListElem *host, u_long32 job_number,
 
71
                                    u_long32 task_number);
 
72
 
 
73
void
 
74
remove_from_reschedule_unknown_lists(sge_gdi_ctx_class_t *ctx,
 
75
                                     u_long32 job_number,
 
76
                                     u_long32 task_number);
 
77
 
 
78
#endif /* __RESCHEDULE_H */