Hacker News new | ask | show | jobs
by im2w1l 3796 days ago
>a rogue thread randomly scanning your memory for things that look like addresses.

How does that avoid race conditions? What happens if I quickly move my pointer around? i.e. b=a;a=null;c=b;b=null;d=c... etc

1 comments

It still works correctly. Try it.