Skip to main content

New answers tagged

Best practices
2 votes
0 replies
0 views

How should I manage resources used in multiple queue families?

OT: Please don't tag multiple different languages, only the one you're actually program in. Both the C and the C++ tag wikis contains guidelines when you can use both together, and your post doesn't ...
Some programmer dude's user avatar
-1 votes

How to make a multiple-read/single-write lock from more basic synchronization primitives?

Maybe you can add a time ordered Que Next Index? This way the read and writes are rotated. (Excuse my mixing of Python and C++) class shared_mutex ... int CurQueBotIdx = 0 , CurQueTopIdx = 0 ...
jjj c's user avatar
  • 1

Top 50 recent answers are included