in reply to Which IPCs are available on Windows that support select() function besides sockets?

I don't know if windows has them, but if it has, you could use unix domain sockets (or any socket namespace other than ip).

You can also use interpreted threads, then you don't have to know what the underlying ipc mechanism is.

  • Comment on Re: Which IPCs are available on Windows that support select() function besides sockets?

Replies are listed 'Best First'.
Re^2: Which IPCs are available on Windows that support select() function besides sockets?
by Anonymous Monk on Oct 16, 2005 at 23:26 UTC
    sorry. Unix domain sockets are only useful on Unix. Also, thread support has had a history of being rather delicate. Maybe it'll be ok, but you want to tread awful carefully.