Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当锁定和解锁互斥锁(我使用 pthread mutexes )时,会有任何上下文切换到内核,这会降低性能。
您几乎可以指望的是,实现可能会尽量减少开销。在您的代码中要担心的更好的事情是确保将锁争用保持在最低限度,这样 Mutex 开销就不会成为代码中的瓶颈。