source: branches/slurm-drmaa-1.0.0/slurm_drmaa/session.h @ 5

Revision 5, 1.1 KB checked in by mmatloka, 14 years ago (diff)

svn:keywords

  • Property svn:executable set to *
  • Property svn:keywords set to Id
Line 
1/* $Id$ */
2/*
3 * PSNC DRMAA for SLURM
4 * Copyright (C) 2010 Poznan Supercomputing and Networking Center
5 *
6 *  This program is free software: you can redistribute it and/or modify
7 *  it under the terms of the GNU General Public License as published by
8 *  the Free Software Foundation, either version 3 of the License, or
9 *  (at your option) any later version.
10 *
11 *  This program is distributed in the hope that it will be useful,
12 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 *  GNU General Public License for more details.
15 *
16 *  You should have received a copy of the GNU General Public License
17 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef __SLURM_DRMAA__SESSION_H
21#define __SLURM_DRMAA__SESSION_H
22
23#ifdef HAVE_CONFIG_H
24#       include <config.h>
25#endif
26
27#include <drmaa_utils/session.h>
28
29typedef struct slurmdrmaa_session_s slurmdrmaa_session_t;
30
31fsd_drmaa_session_t *slurmdrmaa_session_new( const char *contact );
32
33struct slurmdrmaa_session_s {
34        fsd_drmaa_session_t super;
35};
36
37#endif /* __SLURM_DRMAA__SESSION_H */
38
Note: See TracBrowser for help on using the repository browser.