From 60056a8010c3dbaabd713f7a3e4f2963bb921a1b Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 7 Sep 2018 16:20:39 -0400 Subject: for c11 mtx and cnd functions, use externally consistent type names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit despite looking like undefined behavior, the affected code is correct both before and after this patch. the pairs mtx_t and pthread_mutex_t, and cnd_t and pthread_cond_t, are not mutually compatible within a single translation unit (because they are distinct untagged aggregate instances), but they are compatible with an object of either type from another translation unit (6.2.7 ΒΆ1), and therefore a given translation unit can choose which one it wants to use. in the interest of being able to move declarations out of source files to headers that facilitate checking, use the pthread type names in declaring the namespace-safe versions of the pthread functions and cast the argument pointer types when calling them. --- src/thread/cnd_broadcast.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/thread/cnd_broadcast.c') diff --git a/src/thread/cnd_broadcast.c b/src/thread/cnd_broadcast.c index 85d4d3ea..0ad061a3 100644 --- a/src/thread/cnd_broadcast.c +++ b/src/thread/cnd_broadcast.c @@ -1,10 +1,11 @@ #include +#include -int __private_cond_signal(cnd_t *, int); +int __private_cond_signal(pthread_cond_t *, int); int cnd_broadcast(cnd_t *c) { /* This internal function never fails, and always returns zero, * which matches the value thrd_success is defined with. */ - return __private_cond_signal(c, -1); + return __private_cond_signal((pthread_cond_t *)c, -1); } -- cgit v1.2.1