10

Just another day, building some hearty data structures in C.
I need to make a program that can multiplex user IO to different child processes from the command line.

Comments
  • 1
    First thing first:
    list->container = (pid_t*) malloc( list->alloc * 4 )
    to prevent overflowing your memory.
  • 0
    Hmmm nasty...

    what ipc? Platform?
  • 1
    Wow, that sounds really cool
  • 1
    I must say, I love manual memory management. Even with C++17 it is still THE BEST stuff you can mess with <3
  • 1
    @esavier Linux signals, and pipes.
Add Comment