2018-08-23 22:47:02 +03:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2016-11-23 02:03:20 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
|
|
* Copyright (c) 2014 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2018-08-23 22:47:02 +03:00
|
|
|
* Copyright (c) 2018 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2016-11-23 02:03:20 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "opal_config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "support.h"
|
|
|
|
#include "opal/constants.h"
|
|
|
|
#include "opal/threads/threads.h"
|
|
|
|
#include "opal/sys/atomic.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Only have the body of this test if we have thread support */
|
|
|
|
|
2018-07-11 22:34:03 +03:00
|
|
|
static opal_atomic_int_t count = 0;
|
2016-11-23 02:03:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
static void* thr1_run(opal_object_t* obj)
|
|
|
|
{
|
2017-11-30 19:25:21 +03:00
|
|
|
opal_atomic_add (&count, 1);
|
2016-11-23 02:03:20 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void* thr2_run(opal_object_t* obj)
|
|
|
|
{
|
2017-11-30 19:25:21 +03:00
|
|
|
opal_atomic_add (&count, 2);
|
2016-11-23 02:03:20 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
opal_thread_t thr1;
|
|
|
|
opal_thread_t thr2;
|
|
|
|
|
|
|
|
test_init("opal_thread_t");
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT(&thr1, opal_thread_t);
|
|
|
|
OBJ_CONSTRUCT(&thr2, opal_thread_t);
|
|
|
|
|
|
|
|
thr1.t_run = thr1_run;
|
|
|
|
thr2.t_run = thr2_run;
|
|
|
|
|
|
|
|
rc = opal_thread_start(&thr1);
|
|
|
|
test_verify_int(OPAL_SUCCESS, rc);
|
|
|
|
|
|
|
|
rc = opal_thread_start(&thr2);
|
|
|
|
test_verify_int(OPAL_SUCCESS, rc);
|
|
|
|
|
|
|
|
rc = opal_thread_join(&thr1, NULL);
|
|
|
|
test_verify_int(OPAL_SUCCESS, rc);
|
|
|
|
|
|
|
|
rc = opal_thread_join(&thr2, NULL);
|
|
|
|
test_verify_int(OPAL_SUCCESS, rc);
|
|
|
|
|
|
|
|
test_verify_int(3, count);
|
|
|
|
return test_finalize();
|
|
|
|
}
|