Changeset 81 for branches/2.0/pbs_drmaa
- Timestamp:
- 10/14/12 21:12:48 (12 years ago)
- Location:
- branches/2.0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0
-
Property
svn:ignore set
to
configure
Makefile.in
config.log
scripts
config.status
stamp-h1
config.h
config.h.in
drmaa_utils
libtool
autom4te.cache
Makefile
aclocal.m4
.libs
.deps
pbs_attrib.c
del_all_jobs
pbs_drmaa-1.0.2.tar.gz
pbs_drmaa-1.0.3.tar.gz
pbs_drmaa
.svnignore
configure.ac
readme.html
readme.pdf
readme.tex
ltsugar.m4
libtool.m4
ltversion.m4
lt~obsolete.m4
ltoptions.m4
readme.toc
readme.out
readme.aux
readme.log
libtool.m4
lt~obsolete.m4
ltsugar.m4
ltversion.m4
ltoptions.m4
.project
.cproject
drmaa_example1
drmaa_example2
-
Property
svn:ignore set
to
-
branches/2.0/pbs_drmaa
-
Property
svn:ignore set
to
configure
Makefile.in
config.log
scripts
config.status
stamp-h1
config.h
config.h.in
drmaa_utils
libtool
autom4te.cache
Makefile
aclocal.m4
.libs
.deps
pbs_attrib.c
del_all_jobs
pbs_drmaa-1.0.2.tar.gz
pbs_drmaa-1.0.3.tar.gz
pbs_drmaa
.svnignore
configure.ac
readme.html
readme.pdf
readme.tex
ltsugar.m4
libtool.m4
ltversion.m4
lt~obsolete.m4
ltoptions.m4
readme.toc
readme.out
readme.aux
readme.log
libtool.m4
lt~obsolete.m4
ltsugar.m4
ltversion.m4
ltoptions.m4
-
Property
svn:ignore set
to
-
branches/2.0/pbs_drmaa/Makefile.am
r12 r81 1 1 # $Id$ 2 2 # 3 # FedStage DRMAA forPBS Professional4 # Copyright (C) 20 06-2009 FedStage Systems3 # DRMAA for Torque/PBS Professional 4 # Copyright (C) 2012 Poznan Supercomputing and Networking Center 5 5 # 6 6 # This program is free software: you can redistribute it and/or modify … … 20 20 GPERF = @GPERF@ 21 21 GPERFFLAGS = --readonly-tables 22 AM_CPPFLAGS = @PBS_INCLUDES@ -I$(top_srcdir)/drmaa _utils -fPIC22 AM_CPPFLAGS = @PBS_INCLUDES@ -I$(top_srcdir)/drmaa2_utils -fPIC 23 23 24 24 lib_LTLIBRARIES = libdrmaa.la 25 25 26 26 libdrmaa_la_SOURCES = \ 27 drmaa.c \28 job.c job.h \29 pbs_attrib.gperf pbs_attrib.h \30 session.c session.h \31 submit.c submit.h \32 util.c util.h \33 log_reader.c log_reader.h27 drmaa.c 28 # job.c job.h \ 29 # pbs_attrib.gperf pbs_attrib.h \ 30 # session.c session.h \ 31 # submit.c submit.h \ 32 # util.c util.h \ 33 # log_reader.c log_reader.h 34 34 BUILT_SOURCES = pbs_attrib.c 35 35 EXTRA_DIST = pbs_attrib.c 36 36 dist_sysconf_DATA = pbs_drmaa.conf.example 37 libdrmaa_la_LIBADD = ../drmaa _utils/drmaa_utils/libdrmaa_utils.la @PBS_LIBS@37 libdrmaa_la_LIBADD = ../drmaa2_utils/drmaa_utils/libdrmaa_utils.la @PBS_LIBS@ 38 38 libdrmaa_la_LDFLAGS = @PBS_LDFLAGS@ -version-info @PBS_DRMAA_VERSION_INFO@ 39 39 -
branches/2.0/pbs_drmaa/drmaa.c
r12 r81 1 1 /* $Id$ */ 2 2 /* 3 * FedStage DRMAA forPBS Pro4 * Copyright (C) 20 06-2007 FedStage Systems3 * PSNC DRMAA 2.0 for Torque/PBS Pro 4 * Copyright (C) 2012 Poznan Supercomputing and Networking Center 5 5 * 6 6 * This program is free software: you can redistribute it and/or modify … … 22 22 #endif 23 23 24 #include <signal.h>25 24 #include <drmaa_utils/drmaa_base.h> 26 #include <drmaa_utils/session.h> 27 #include <drmaa_utils/template.h> 28 #include <drmaa_utils/drmaa_attrib.h> 29 #include <drmaa_utils/iter.h> 30 #include <drmaa_utils/logging.h> 31 #include <pbs_drmaa/session.h> 32 33 25 26 27 28 #if 0 34 29 static fsd_drmaa_session_t * 35 30 pbsdrmaa_new_session( fsd_drmaa_singletone_t *self, const char *contact ) … … 225 220 }; 226 221 222 #endif
Note: See TracChangeset
for help on using the changeset viewer.