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

« back to all changes in this revision

Viewing changes to source/daemons/qmaster/sge_thread_jvm.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_JVM_H_
 
2
#define _SGE_THREAD_JVM_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
#ifndef NO_JNI
 
36
 
 
37
#include <pthread.h>
 
38
 
 
39
#include "gdi/sge_gdi_ctx.h"
 
40
#include "gdi/sge_gdi_packet.h"
 
41
 
 
42
typedef struct _master_jvm_class_t master_jvm_class_t;
 
43
 
 
44
struct _master_jvm_class_t {
 
45
   /* 
 
46
    * mutex to gard all members of this structure 
 
47
    */
 
48
   pthread_mutex_t mutex;
 
49
 
 
50
   /* 
 
51
    * If the JVM thread can't start the JVM in will run into
 
52
    * code which waits for this condition to be signalled. This
 
53
    * prevents the JVM thread trying to start the JVM again and again.
 
54
    */
 
55
   pthread_cond_t  cond_var;
 
56
 
 
57
   /* 
 
58
    * has the JVM thread been started  
 
59
    */
 
60
   bool is_running;
 
61
 
 
62
   /*
 
63
    * next thread id to be used when jvm is restarted
 
64
    */
 
65
   int thread_id;
 
66
 
 
67
   /*
 
68
    * use bootstrap info to identify if scheduler should be started (true)
 
69
    * or ignore that information (false) 
 
70
    */                  
 
71
   bool use_bootstrap;
 
72
 
 
73
   /*
 
74
    * true if shutdown should continue
 
75
    */
 
76
   bool shutdown_started;
 
77
}; 
 
78
 
 
79
void
 
80
sge_jvm_initialize(sge_gdi_ctx_class_t *ctx, lList **answer_list);
 
81
 
 
82
void
 
83
sge_jvm_terminate(sge_gdi_ctx_class_t *ctx, lList **answer_list);
 
84
 
 
85
#endif
 
86
 
 
87
#endif
 
88