hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.4K
active users

Never use Tokio mutexes. From a guide I'm in the middle of writing:

@rain ooof. I assume this applies to futures::lock::Mutex, too?...

@zkat Yes, looks like it. Basically async and mutexes just don't play along, because futures can always be cancelled (dropped) at any await point

@rain @zkat shouldn’t the drop of the task imply a drop of the mutexguard?

rain 🌦️

@baloo @zkat Yes, the problem is that if invariants are violated in the middle of the critical section (very normal for mutexes) then the mutex silently unlocks and the invariants stay violated

@rain @zkat ha, good point! I was only looking for poisoned mutex

@rain @zkat removing the Unpin blanket implementation should make sure it can't cross await points right?

@baloo @zkat That would defeat the point of tokio mutexes though, if you don't want to cross await points then you can just use std mutexes