- Adapt for changed opal_init() arguments -- takes argc&argv
It's orte/constants.h not orte/orte_constants.h This commit was SVN r22594.
Этот коммит содержится в:
родитель
c161cf5fa4
Коммит
583bb42739
@ -52,7 +52,7 @@ FILE *test_out;
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -54,7 +54,7 @@ FILE *test_out;
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -48,7 +48,7 @@ FILE *test_out;
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -37,7 +37,7 @@ FILE *test_out;
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -48,7 +48,7 @@ FILE *test_out;
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -50,7 +50,7 @@ opal_dss_value_t dval = { {OBJ_CLASS(opal_dss_value_t),0},OPAL_UNDEF,NULL};
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -47,7 +47,7 @@ FILE *test_out;
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -48,7 +48,7 @@ FILE *test_out;
|
||||
|
||||
int main (int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_out = stderr;
|
||||
|
||||
|
@ -26,7 +26,7 @@ main(int argc, char *argv[])
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = opal_init();
|
||||
ret = opal_init(&argc, &argv);
|
||||
if (OPAL_SUCCESS != ret) {
|
||||
return (-1 * ret);
|
||||
}
|
||||
|
@ -38,7 +38,7 @@
|
||||
#include "opal/util/error.h"
|
||||
#include "opal/constants.h"
|
||||
#include "opal/runtime/opal.h"
|
||||
#include "orte/orte_constants.h"
|
||||
#include "orte/constants.h"
|
||||
|
||||
int
|
||||
main(int argc, char *argv[])
|
||||
@ -53,7 +53,7 @@ main(int argc, char *argv[])
|
||||
1 }; /* sentinal */
|
||||
char buf[1024];
|
||||
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
for (i = 0 ; errors[i] <= 0 ; ++i) {
|
||||
printf("--> error code: %d\n", errors[i]);
|
||||
|
@ -61,7 +61,7 @@ main(int argc, char *argv[])
|
||||
{
|
||||
char hostname[MAXHOSTNAMELEN];
|
||||
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
test_init("opal_if");
|
||||
|
||||
/* 127.0.0.1 */
|
||||
|
@ -50,7 +50,7 @@ static bool test3(void); /* test making a directory tree */
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_init("opal_os_create_dirpath_t");
|
||||
|
||||
|
@ -44,7 +44,7 @@ static bool test4(void); /* missing path separator test */
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
test_init("opal_os_path_t");
|
||||
|
||||
|
@ -28,7 +28,7 @@ main(int argc, char *argv[])
|
||||
{
|
||||
opal_timer_t start, end, diff;
|
||||
|
||||
opal_init();
|
||||
opal_init(&argc, &argv);
|
||||
|
||||
printf("--> frequency: %llu\n", (unsigned long long) opal_timer_base_get_freq());
|
||||
|
||||
|
@ -30,8 +30,7 @@
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include "support.h"
|
||||
#include "orte/orte_constants.h"
|
||||
#include "orte/mca/ns/ns_types.h"
|
||||
#include "orte/constants.h"
|
||||
#include "orte/util/proc_info.h"
|
||||
#include "opal/util/os_path.h"
|
||||
#include "orte/util/session_dir.h"
|
||||
|
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
#include "orte_config.h"
|
||||
#include "orte/orte_constants.h"
|
||||
#include "orte/constants.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user