diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-25 05:14:57 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-25 05:14:57 +0000 |
commit | fe052134f692c852e092a94917dfdec7b13612c0 (patch) | |
tree | ace019ab5161d52cce663b4c7408d746727efc5c /libgo/runtime/channel.h | |
parent | e533b2a4c9ce8ee4fd207728dba3a9e2ffc5374a (diff) | |
download | gcc-fe052134f692c852e092a94917dfdec7b13612c0.zip gcc-fe052134f692c852e092a94917dfdec7b13612c0.tar.gz gcc-fe052134f692c852e092a94917dfdec7b13612c0.tar.bz2 |
Remove closed function. Fix tuple receive in select.
From-SVN: r171440
Diffstat (limited to 'libgo/runtime/channel.h')
-rw-r--r-- | libgo/runtime/channel.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libgo/runtime/channel.h b/libgo/runtime/channel.h index 743af8b..cd439bf 100644 --- a/libgo/runtime/channel.h +++ b/libgo/runtime/channel.h @@ -50,9 +50,6 @@ struct __go_channel _Bool selected_for_receive; /* True if this channel has been closed. */ _Bool is_closed; - /* True if at least one null value has been read from a closed - channel. */ - _Bool saw_close; /* The list of select statements waiting to send on a synchronous channel. */ struct __go_channel_select *select_send_queue; |