~ubuntu-branches/ubuntu/vivid/adios/vivid-proposed

« back to all changes in this revision

Viewing changes to utils/adios_lint/adios_lint.c

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-06-16 23:06:38 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140616230638-cxryhot6b8ge32l6
Tags: 1.7.0-1
* New upstream release.
* Add adios.pc pkgconfig file. adios_config now uses this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "adios.h"
21
21
#include "adios_transport_hooks.h"
22
22
#include "adios_internals.h"
 
23
#include "adios_internals_mxml.h"
23
24
 
24
25
#define STR_LEN 1000
25
26
 
47
48
    struct adios_method_list_struct * methods = 0;
48
49
    struct adios_group_list_struct * groups = 0;
49
50
    char * filename;
 
51
    MPI_Comm comm = 0; //dummy comm
50
52
 
51
53
    if (argc < 2)
52
54
        filename = "config.xml";
53
55
    else
54
56
        filename = argv [1];
55
57
 
56
 
    if (!adios_parse_config (filename))
 
58
    if (!adios_parse_config (filename, comm))
57
59
        return 1;
58
60
 
59
61
    methods = adios_get_methods ();