All public logs

From wikinotes

Combined display of all available logs of wikinotes. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:19, 3 August 2022 Will talk contribs created page Programming: Threads (Created page with "Threads are units of synchronous code that can be multiplexed within a process.<br> Threads belonging to the same process, and share the same memory, so care needs to be taken to ensure the same object is not changed twice. = Thread Safety = <blockquote> == Strategies == <blockquote> Thread safety can be achieved by * not sharing state across threads (ex. serialization) * only sharing immutable state * synchronization between threads </blockquote><!-- Strategies --> =...")