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

« back to all changes in this revision

Viewing changes to source/daemons/qmaster/sge_thread_main.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_THREAD_CONTROL_OLD_H_
 
2
#define _SGE_THREAD_CONTROL_OLD_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: 2003 by Sun Microsystems, Inc.
 
29
 * 
 
30
 *   All Rights Reserved.
 
31
 * 
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/
 
34
 
 
35
#include "sge_thread_jvm.h"
 
36
#include <pthread.h>
 
37
#include "gdi/sge_gdi_ctx.h"
 
38
#include "gdi/sge_gdi_packet.h"
 
39
 
 
40
typedef struct {
 
41
   /* exit state: 100 = another master took over */
 
42
   int exit_state;
 
43
 
 
44
   /* Worker threads: handling incoming "intern GDI requests" */
 
45
   cl_raw_list_t *worker_thread_pool;
 
46
 
 
47
   /* Message threads: accepting and answering certain commlib requests */
 
48
   cl_raw_list_t *listener_thread_pool;
 
49
 
 
50
   /* Signal thread */
 
51
   cl_raw_list_t *signal_thread_pool;
 
52
 
 
53
   /* Timed event thread */
 
54
   cl_raw_list_t *timer_thread_pool;
 
55
 
 
56
   /* Event event master thread */
 
57
   cl_raw_list_t *event_master_thread_pool;
 
58
 
 
59
   /* Scheduler thread */
 
60
   cl_raw_list_t *scheduler_thread_pool; 
 
61
 
 
62
   /* JVM thread */ 
 
63
   cl_raw_list_t *jvm_thread_pool;        
 
64
 
 
65
   /* intern GDI test thread */ 
 
66
   cl_raw_list_t *test_thread_pool;        
 
67
} main_control_t;
 
68
 
 
69
extern main_control_t Main_Control;
 
70
 
 
71
int 
 
72
sge_qmaster_shutdown_via_signal_thread(int i);
 
73
 
 
74
int
 
75
sge_qmaster_get_exit_state(void); 
 
76
 
 
77
void
 
78
sge_qmaster_set_exit_state(int new_state);
 
79
 
 
80
bool
 
81
sge_qmaster_do_final_spooling(void);
 
82
 
 
83
 
 
84
#endif 
 
85