KernelPanic@programming.dev to Programmer Humor@programming.devEnglish · 23 hours agoLearning to program in rustprogramming.devvideomessage-square36fedilinkarrow-up1231arrow-down12
arrow-up1229arrow-down1videoLearning to program in rustprogramming.devKernelPanic@programming.dev to Programmer Humor@programming.devEnglish · 23 hours agomessage-square36fedilink
minus-squarePlexSheep@infosec.publinkfedilinkarrow-up1·19 hours agoYou mean mutex? Arc allows synchronous read only access by multiple threads, so it’s not a performance bottleneck. Locking a mutex would be one.
minus-squaremholiv@lemmy.worldlinkfedilinkarrow-up3·edit-27 hours agoI mean it could be Mutex, or Rwlock or anything atomic. It’s just when I have to put stuff into an Arc<> to pass around I know trouble is coming.
You mean mutex? Arc allows synchronous read only access by multiple threads, so it’s not a performance bottleneck. Locking a mutex would be one.
I mean it could be Mutex, or Rwlock or anything atomic. It’s just when I have to put stuff into an Arc<> to pass around I know trouble is coming.