Viewing profile — logancapaldo
logancapaldo
HN member- Joined
- Thu, Sep 08, 2011, 2:20 AM UTC
- HN karma
- 5
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About logancapaldo
No profile information was provided.
Recent public activity
-
comment
Comment #6872391
I see. What I was worried about was a version of the code you didn't actually write (casting the ptrdiff_t result to a [u]intptr_t, not casting the pointers first).
-
comment
Comment #6871828
What if it's not a DWIM compiler? I'm pretty sure (happy to be corrected) pointer integer conversions are implementation defined. Therefore casting between could perform some rever…
-
comment
Comment #3752560
That is not a "similar" implementation, and it's not in the "library". It exposes the OS/ABI level exception functionality (which C++ exceptions are also built atop of) to the comp…
-
comment
Comment #3720262
This article is pretty terrifying: #import #import // Globals pthread_mutex_t *gLck; int gSum; int main (int argc, const char * argv[]) { pthread_t *tFoo, *tBar; int tErr, tArgF, t…
-
comment
Comment #3068693
And this is why, any cache without an eviction policy and/or size limitation is bad (and memoization _is_ a cache). I shudder every time I see a "magical" memoization function whos…