Function
GLibPollFunc
Declaration
gint
(*GPollFunc)(
GPollFD*ufds,
guintnfsd,
ginttimeout_
)
Description [src]
Specifies the type of function passed to g_main_context_set_poll_func().
The semantics of the function should match those of the poll() system call.
Parameters
ufds-
Type:
GPollFDAn array of
GPollFDelements.The data is owned by the caller of the function. nfsd-
Type:
guintThe number of elements in
ufds. timeout_-
Type:
gintThe maximum time to wait for an event of the file descriptors. A negative value indicates an infinite timeout.
Return value
Type: gint
The number of GPollFD elements which have events or errors
reported, or -1 if an error occurred.