|
|
|
|
|
by ttfkam
1104 days ago
|
|
Never said you couldn't have concurrency bugs. I specifically mentioned thread deadlocks and atomism. You cannot claim locks, so you cannot claim them out of order. JavaScript has no notion of "atomic integer increment" since all variable access is atomic/single threaded. That is not the same as the straw man claim you asserted for me. And I reiterate: no deadlocks or atomism concerns greatly aids developers in writing secure and robust code. It does not eliminate all bugs, concurrent or otherwise, nor did I ever claim it did. If you can find a code example in browser-based JS that triggers a deadlock, I'd be fascinated to learn about it. |
|