Displaying 3 results from an estimated 3 matches for "poll_event".
Did you mean:
epoll_event
2001 Oct 23
1
wine-20011004 Problems
I'm having major problems with the 10/4 Wine release. Currently the only
thing I really use Wine for is Eudora Light 3.0.5. The most stable
release for me thus far has been wine-20010112, which is what I'm using
right now. Most of the releases since then have had window problems with
Eudora-- messages having too much blank space, strange things.
So I tried 1004, and it has a new
2001 Nov 03
3
Programs under wine can't connect to the network
Hey all
Have a very strange problem in slack 8, using wine 20011004. First noticed this with counterstrike, than checked with other programs that should access the net.
I get this error, and programs fail:
fixme:winsock:_get_sock_fd handle 304 is not a socket (GLE 6)
Documentation seems to imply that if I can get on the net with linux, I should be able to use wine with it. Weirdest part is
2012 Oct 12
0
NUT drivers socket polling issues
.....);
while (!shut_down) {
status = poll(fd_set, timeout);
switch (status) {
case POLL_ERROR:
// Handle error ...
break;
case POLL_TIMEOUT:
// Handle timeout ...
timeout.set(...);
break;
case POLL_EVENT:
// Handle data ...
break;
}
I.e. you typically have a poll function call (select is used in NUT),
and you process the result of it in a loop.
In driver/main.c, this is done like this { poll_and_process(); }*,
i.e. there's an empty loop around function dstate_poll_...