tags:

views:

47

answers:

1

Is there a documentation available for g_io_channel_win32_make_pollfd

I want to use this function to create FDs on windows for IPC between main thread and the separate thread.

It is only briefly mentioned here and doesn't really explain how to use it. I really need an example. thx

+1  A: 

Here's the source code, and there's also a testcase that uses it. Documentation is available in the header it's declared in. If that documentation doesn't appear in the manual, you might want to file a bug with the glib people - it's probably being excluded from the documentation generator due to a bug of some sort.

bdonlan