Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 7202a18

Browse files
authored
Merge pull request #1197 from ggouaillardet/topic/v2.x/pthread_join_typo
configury: fix pthread_join() call in OPAL_INTL_PTHREAD_TRY_LINK_FORTRAN
2 parents b3c1b4a + 4ed5785 commit 7202a18

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)