Fix PR47707
[official-gcc.git] / libgo / runtime / go-closed.c
blobbfa9cd6f9cc6cafbde04e1f021dc2471d9bd47c3
1 /* go-closed.c -- the builtin closed function.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 #include "go-assert.h"
8 #include "channel.h"
10 /* Return whether a channel is closed. We only return true after at
11 least one nil value has been read from the channel. */
13 _Bool
14 __go_builtin_closed (struct __go_channel *channel)
16 int i;
17 _Bool ret;
19 i = pthread_mutex_lock (&channel->lock);
20 __go_assert (i == 0);
22 while (channel->selected_for_receive)
24 i = pthread_cond_wait (&channel->cond, &channel->lock);
25 __go_assert (i == 0);
28 ret = channel->saw_close;
30 i = pthread_mutex_unlock (&channel->lock);
31 __go_assert (i == 0);
33 return ret;