Database
drmaa.txt
Associated article: The Distributed Resource Management Application API
Tags: Database Design
Published source code accompanying the article byFrederic Pariente in which he examines the the Distributed Resource Management Application API (DRMAA) which facilitates the development of grid-enabled applications by offering a standard API.
The Distributed Resource Management Application API
by Frederic Pariente
Listing One
#include <stdio.h>
#include "drmaa.h"
int main (int argc, char **argv) {
char error[DRMAA_ERROR_STRING_BUFFER];
if (drmaa_init (NULL, error, DRMAA_ERROR_...


