Arc Forumnew | comments | leaders | submitlogin
1 point by jazzdev 5884 days ago | link | parent

Hiding the ugliness in a macro is great idea.

But the solution isn't scalable in a multi-threaded program. 50 threads that want to call w/stdx would have to be serialized. And only because they share a temporary variable has to be global.

mzscheme solves this with thread-local variables.