Hacker News new | ask | show | jobs
by john_fushi 2484 days ago
Just create child processes with a shared memory region. That's not multi-threading.
2 comments

Hah, I've used the forking server approach very successfully before.

Plus, threads and processes are essentially the same on unix land – kernel flags will control behavior like shared memory. Which you can still setup manually. Or just use whatever IPC fancies you.

Technically correct is the best kind of correct ;-)