Skip to content

Commit 713e3ea

Browse files
committed
configury: fix pthread_join() call in OPAL_INTL_PTHREAD_TRY_LINK_FORTRAN
1 parent 4c1ea4a commit 713e3ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/opal_config_pthreads.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dnl Copyright (c) 2004-2005 The Regents of the University of California.
1111
dnl All rights reserved.
1212
dnl Copyright (c) 2012 Cisco Systems, Inc. All rights reserved.
1313
dnl Copyright (c) 2014 Intel, Inc. All rights reserved.
14-
dnl Copyright (c) 2014-2015 Research Organization for Information Science
14+
dnl Copyright (c) 2014-2016 Research Organization for Information Science
1515
dnl and Technology (RIST). All rights reserved.
1616
dnl $COPYRIGHT$
1717
dnl
@@ -119,7 +119,7 @@ void pthreadtest_f(void)
119119
pthread_attr_init(&attr);
120120
pthread_cleanup_push(cleanup_routine, 0);
121121
pthread_create(&newthread, &attr, thread_main, 0);
122-
pthread_join(&newthread, 0);
122+
pthread_join(newthread, 0);
123123
pthread_cleanup_pop(0);
124124
}
125125

0 commit comments

Comments
 (0)