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

« back to all changes in this revision

Viewing changes to source/libs/japi/howto/howto6.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
#include <stdio.h>
 
33
#include "drmaa.h"
 
34
 
 
35
int main (int argc, char **argv) {
 
36
   char error[DRMAA_ERROR_STRING_BUFFER];
 
37
   int errnum = 0;
 
38
   char contact[DRMAA_CONTACT_BUFFER];
 
39
   char drm_system[DRMAA_DRM_SYSTEM_BUFFER];
 
40
   char drmaa_impl[DRMAA_DRM_SYSTEM_BUFFER];
 
41
   unsigned int major = 0;
 
42
   unsigned int minor = 0;
 
43
      
 
44
   errnum = drmaa_get_contact (contact, DRMAA_CONTACT_BUFFER, error,
 
45
                               DRMAA_ERROR_STRING_BUFFER);
 
46
   
 
47
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
48
      fprintf (stderr, "Could not get the contact string list: %s\n", error);
 
49
   }
 
50
   else {
 
51
      printf ("Supported contact strings: \"%s\"\n", contact);
 
52
   }
 
53
 
 
54
   errnum = drmaa_get_DRM_system (drm_system, DRMAA_DRM_SYSTEM_BUFFER, error,
 
55
                               DRMAA_ERROR_STRING_BUFFER);
 
56
   
 
57
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
58
      fprintf (stderr, "Could not get the DRM system list: %s\n", error);
 
59
   }
 
60
   else {
 
61
      printf ("Supported DRM systems: \"%s\"\n", drm_system);
 
62
   }
 
63
   
 
64
   errnum = drmaa_get_DRMAA_implementation (drmaa_impl, DRMAA_DRM_SYSTEM_BUFFER,
 
65
                                            error, DRMAA_ERROR_STRING_BUFFER);
 
66
   
 
67
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
68
      fprintf (stderr, "Could not get the DRMAA implementation list: %s\n", error);
 
69
   }
 
70
   else {
 
71
      printf ("Supported DRMAA implementations: \"%s\"\n", drmaa_impl);
 
72
   }
 
73
 
 
74
   errnum = drmaa_init (NULL, error, DRMAA_ERROR_STRING_BUFFER);
 
75
 
 
76
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
77
      fprintf (stderr, "Could not initialize the DRMAA library: %s\n", error);
 
78
      return 1;
 
79
   }
 
80
 
 
81
   errnum = drmaa_get_contact (contact, DRMAA_CONTACT_BUFFER, error,
 
82
                               DRMAA_ERROR_STRING_BUFFER);
 
83
   
 
84
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
85
      fprintf (stderr, "Could not get the contact string: %s\n", error);
 
86
   }
 
87
   else {
 
88
      printf ("Connected contact string: \"%s\"\n", contact);
 
89
   }
 
90
 
 
91
   errnum = drmaa_get_DRM_system (drm_system, DRMAA_CONTACT_BUFFER, error,
 
92
                               DRMAA_ERROR_STRING_BUFFER);
 
93
 
 
94
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
95
      fprintf (stderr, "Could not get the DRM system: %s\n", error);
 
96
   }
 
97
   else {
 
98
      printf ("Connected DRM system: \"%s\"\n", drm_system);
 
99
   }
 
100
 
 
101
   errnum = drmaa_get_DRMAA_implementation (drmaa_impl, DRMAA_DRM_SYSTEM_BUFFER,
 
102
                                            error, DRMAA_ERROR_STRING_BUFFER);
 
103
   
 
104
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
105
      fprintf (stderr, "Could not get the DRMAA implementation list: %s\n", error);
 
106
   }
 
107
   else {
 
108
      printf ("Supported DRMAA implementations: \"%s\"\n", drmaa_impl);
 
109
   }
 
110
 
 
111
   errnum = drmaa_version (&major, &minor, error, DRMAA_ERROR_STRING_BUFFER);
 
112
 
 
113
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
114
      fprintf (stderr, "Could not get the DRMAA version: %s\n", error);
 
115
   }
 
116
   else {
 
117
      printf ("Using DRMAA version %d.%d\n", major, minor);
 
118
   }
 
119
   
 
120
   errnum = drmaa_exit (error, DRMAA_ERROR_STRING_BUFFER);
 
121
 
 
122
   if (errnum != DRMAA_ERRNO_SUCCESS) {
 
123
      fprintf (stderr, "Could not shut down the DRMAA library: %s\n", error);
 
124
      return 1;
 
125
   }
 
126
 
 
127
   return 0;
 
128
}