Heuristics for software-interrupt processing
Heuristics for software-interrupt processing
Posted Mar 13, 2023 20:46 UTC (Mon) by iustin (subscriber, #102433)Parent article: Heuristics for software-interrupt processing
Posted Mar 14, 2023 0:47 UTC (Tue)
by mathstuf (subscriber, #69389)
[Link]
Posted Mar 14, 2023 10:21 UTC (Tue)
by farnz (subscriber, #17727)
[Link]
Fundamentally, humans aren't good about thinking in terms of concurrent modifications - our brains like "first this, then that, then either this or that" sequences, and not "this and this and this in unknown order, then that and that in unknown order". A big global lock is a great way to ensure that there are no concurrent modifications; even better if it's implicit and thus compile-time, rather than something you have to remember to lock before you do your work.
Heuristics for software-interrupt processing
Heuristics for software-interrupt processing