Search results

  1. S

    IPC message queues?

    I would like to use message queues in one of my programs. Does OSX not support either POSIX or System V message queues or am I setting up my programs wrong? /usr/include/sys/msg.h (for SysV message queues) and /usr/include/mqueue.h (for POSIX message queues) do not exist. I tried compiling an...
  2. S

    Function callback problems

    I have written a sorting function for a resizeable array object in C++. The sorting function requires a pointer to a user-defined comparison function to be passed as a parameter. I noticed that sometimes the program crashes with a SIGBUS and sometimes it works fine without any changes to the...
Back
Top