kvark / ticketed_lock

Ticketed lock synchronization primitive
Apache License 2.0
11 stars 3 forks source link

Parking lot basis #5

Open mathstuf opened 7 years ago

mathstuf commented 7 years ago

Would it make sense to rebase this crate on top of parking lot (I asked about it providing a ticketed lock in Amanieu/parking_lot#40)? Or should a new crate be made?

kvark commented 7 years ago

@mathstuf this crate was developed for Specs ECS, and the latter no longer uses ticketed locks, so I'm not currently interested in pushing this further along. If you want to work on it, and you have a vision, I'd be happy to add you to the contributor.

How would this library look on top of parking_lot? as in, what will be left here?

mathstuf commented 7 years ago

I have a project which will require ticketed locks at some point, but I haven't gotten that far yet. I'm scouting out the future terrain :) .

It'd use parking lot's primitives instead of the standard library.