You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the way it's currently implemented, wouldn't it be possible to call acl_signal_condvar multiple times, incrementing the c->signal_sem semaphore multiple times (i.e. n times), without ever needing to wait for the condvar? If so, that means we can wait for the condvar n times after having called acl_signal_condvar and have it immediately return, since the semaphore's internal count is n. Is this intentional?