sync: use asserts in channel code only when `-d debug` is passed

pull/13758/merge
Delyan Angelov 2022-04-14 14:00:57 +03:00
parent a62560d2c1
commit f1f75897b3
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
2 changed files with 7 additions and 3 deletions

View File

@ -41,7 +41,9 @@ fn main() {
go do_rec(ch, resch, n)
no -= n
}
assert no == 0
$if debug {
assert no == 0
}
no = nobj
for i in 0 .. nsend {
n := no / (nsend - i)

View File

@ -547,8 +547,10 @@ fn (mut ch Channel) try_pop_priv(dest voidptr, no_block bool) ChanState {
// -2 if all channels are closed
pub fn channel_select(mut channels []&Channel, dir []Direction, mut objrefs []voidptr, timeout time.Duration) int {
assert channels.len == dir.len
assert dir.len == objrefs.len
$if debug {
assert channels.len == dir.len
assert dir.len == objrefs.len
}
mut subscr := []Subscription{len: channels.len}
mut sem := unsafe { Semaphore{} }
sem.init(0)