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

« back to all changes in this revision

Viewing changes to source/clients/qconf/qconf.c

  • 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
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 * 
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 * 
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 * 
 
9
 * 
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 * 
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 * 
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 * 
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 * 
 
28
 *   All Rights Reserved.
 
29
 * 
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
 
 
33
#include "sge_unistd.h"
 
34
#include "sge_all_listsL.h"
 
35
#include "usage.h"
 
36
#include "parse_qconf.h"
 
37
#include "sig_handlers.h"
 
38
#include "commlib.h"
 
39
#include "sge_prog.h"
 
40
#include "sgermon.h"
 
41
#include "sge_log.h"
 
42
#include "msg_clients_common.h"
 
43
#include "msg_common.h"
 
44
#include "sge_answer.h"
 
45
#include "sge_mt_init.h"
 
46
#include "sge_feature.h"
 
47
#include "gdi/sge_gdi.h"
 
48
#include "gdi/sge_gdi_ctx.h"
 
49
 
 
50
 
 
51
extern char **environ;
 
52
 
 
53
int main(int argc, char *argv[]);
 
54
 
 
55
/************************************************************************/
 
56
int main(int argc, char **argv)
 
57
{
 
58
   lList *alp = NULL;
 
59
   sge_gdi_ctx_class_t *ctx = NULL;
 
60
 
 
61
   DENTER_MAIN(TOP_LAYER, "qconf");
 
62
 
 
63
   log_state_set_log_gui(1);
 
64
   sge_setup_sig_handlers(QCONF);
 
65
   
 
66
   if (sge_gdi2_setup(&ctx, QCONF, MAIN_THREAD, &alp) != AE_OK) {
 
67
      answer_list_output(&alp);
 
68
      SGE_EXIT((void**)&ctx, 1);
 
69
   }
 
70
 
 
71
   if (sge_parse_qconf(ctx, ++argv)) {
 
72
      SGE_EXIT((void**)&ctx, 1);
 
73
   } else {
 
74
      SGE_EXIT((void**)&ctx, 0);
 
75
   }
 
76
   DEXIT;
 
77
   return 0;
 
78
}