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

« back to all changes in this revision

Viewing changes to source/libs/sgeobj/sge_messageL.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_MESSAGEL_H
 
2
#define __SGE_MESSAGEL_H
 
3
 
 
4
/*___INFO__MARK_BEGIN__*/
 
5
/*************************************************************************
 
6
 * 
 
7
 *  The Contents of this file are made available subject to the terms of
 
8
 *  the Sun Industry Standards Source License Version 1.2
 
9
 * 
 
10
 *  Sun Microsystems Inc., March, 2001
 
11
 * 
 
12
 * 
 
13
 *  Sun Industry Standards Source License Version 1.2
 
14
 *  =================================================
 
15
 *  The contents of this file are subject to the Sun Industry Standards
 
16
 *  Source License Version 1.2 (the "License"); You may not use this file
 
17
 *  except in compliance with the License. You may obtain a copy of the
 
18
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
19
 * 
 
20
 *  Software provided under this License is provided on an "AS IS" basis,
 
21
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
22
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
23
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
24
 *  See the License for the specific provisions governing your rights and
 
25
 *  obligations concerning the Software.
 
26
 * 
 
27
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
28
 * 
 
29
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
30
 * 
 
31
 *   All Rights Reserved.
 
32
 * 
 
33
 ************************************************************************/
 
34
/*___INFO__MARK_END__*/
 
35
 
 
36
#include "sge_boundaries.h"
 
37
 
 
38
#ifdef  __cplusplus
 
39
extern "C" {
 
40
#endif
 
41
 
 
42
/* *INDENT-OFF* */ 
 
43
 
 
44
/*
 
45
 * Scheduler messages
 
46
 */
 
47
enum {
 
48
   SME_message_list = SME_LOWERBOUND,
 
49
   SME_global_message_list
 
50
};
 
51
 
 
52
LISTDEF(SME_Type)
 
53
   JGDI_ROOT_OBJ(JobSchedulingInfo, SGE_JOB_SCHEDD_INFO_LIST, GET )
 
54
   JGDI_EVENT_OBJ(ADD(sgeE_JOB_SCHEDD_INFO_ADD) | MODIFY(sgeE_JOB_SCHEDD_INFO_MOD) | DELETE(sgeE_JOB_SCHEDD_INFO_DEL) | GET_LIST(sgeE_JOB_SCHEDD_INFO_LIST))
 
55
   SGE_LIST(SME_message_list, MES_Type, CULL_DEFAULT | CULL_JGDI_RO)         /* MES_Type */
 
56
   SGE_LIST(SME_global_message_list, MES_Type, CULL_DEFAULT | CULL_JGDI_RO)  /* MES_Type */
 
57
LISTEND 
 
58
 
 
59
NAMEDEF(SMEN)
 
60
   NAME("SME_message_list")
 
61
   NAME("SME_global_message_list")
 
62
NAMEEND
 
63
 
 
64
#define SMES sizeof(SMEN)/sizeof(char*)
 
65
 
 
66
/*
 
67
 * Message element
 
68
 */
 
69
enum {
 
70
   MES_job_number_list = MES_LOWERBOUND,
 
71
   MES_message_number,
 
72
   MES_message
 
73
};
 
74
 
 
75
LISTDEF(MES_Type)
 
76
   JGDI_OBJ(JobSchedulingMessage)
 
77
   SGE_LIST(MES_job_number_list, ULNG_Type, CULL_DEFAULT)
 
78
   SGE_ULONG(MES_message_number, CULL_DEFAULT)
 
79
   SGE_STRING(MES_message, CULL_DEFAULT)
 
80
LISTEND 
 
81
 
 
82
NAMEDEF(MESN)
 
83
   NAME("MES_job_number_list")
 
84
   NAME("MES_message_number")
 
85
   NAME("MES_message")
 
86
NAMEEND
 
87
 
 
88
/* *INDENT-ON* */   
 
89
 
 
90
#define MESS sizeof(MESN)/sizeof(char*)
 
91
#ifdef  __cplusplus
 
92
}
 
93
#endif
 
94
#endif