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

« back to all changes in this revision

Viewing changes to source/clients/qsub/msg_qsub.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 __MSG_QSUB_H
 
2
#define __MSG_QSUB_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
 
 
36
#include "basis_types.h"
 
37
 
 
38
#define MSG_QSUB_WARNING_S    _MESSAGE(21000, _("qsub: warning: "))
 
39
#define MSG_QSUB_WAITINGFORIMMEDIATEJOBTOBESCHEDULED    _MESSAGE(21001, _("Waiting for immediate job to be scheduled."))
 
40
#define MSG_QSUB_YOURQSUBREQUESTCOULDNOTBESCHEDULEDDTRYLATER    _MESSAGE(21003, _("Your qsub request could not be scheduled, try again later."))
 
41
#define MSG_QSUB_YOURIMMEDIATEJOBXHASBEENSUCCESSFULLYSCHEDULED_S    _MESSAGE(21004, _("Your immediate job "SFN" has been successfully scheduled."))
 
42
#define MSG_QSUB_COULDNOTINITIALIZEENV_S    _MESSAGE(21005, _("Unable to initialize environment because of error: "SFN"\nExiting."))
 
43
#define MSG_QSUB_COULDNOTRUNJOB_S    _MESSAGE(21006, _("Unable to run job: "SN_UNLIMITED".\nExiting."))
 
44
#define MSG_QSUB_COULDNOTWAITFORJOB_S    _MESSAGE(21007, _("Unable to wait for job because of error: "SFN"\nExiting."))
 
45
#define MSG_QSUB_JOBNEVERRAN_S    _MESSAGE(21008, _("Unable to run job "SFN))
 
46
#define MSG_QSUB_JOBRECEIVEDSIGNAL_SS    _MESSAGE(21009, _("Job "SFN" exited because of signal "SFN))
 
47
#define MSG_QSUB_JOBFINISHUNCLEAR_S    _MESSAGE(21010, _("No information available on job "SFN"'s exit status."))
 
48
#define MSG_QSUB_COULDNOTFINALIZEENV_S    _MESSAGE(21011, _("Unable to finalize environment because of error: "SFN"\nExiting."))
 
49
#define MSG_QSUB_YOURJOBHASBEENSUBMITTED_SS    _MESSAGE(21012, _("Your job "SFN" ("SFQ") has been submitted."))
 
50
#define MSG_QSUB_JOBEXITED_SI    _MESSAGE(210013, _("Job "SFN" exited with exit code %d."))
 
51
#define MSG_QSUB_INTERRUPTED    _MESSAGE(210015, _("Interrupted!"))
 
52
#define MSG_QSUB_TERMINATING    _MESSAGE(210016, _("Please wait while qsub shuts down."))
 
53
#define MSG_QSUB_COULDNOTREADSCRIPT_S    _MESSAGE(210017, _("Unable to read script file because of error: "))
 
54
 
 
55
#endif /* __MSG_QSUB_H */
 
56