All pastes #2072545 Raw Edit

Untitled

public c v1 · immutable
#2072545 ·published 2011-05-31 00:53 UTC
rendered paste body
 for (;;) {        fprintf(stdout, "PJMP Polling\n");    	i = poll(pfds, 1, POLL_TIMEOUT);        fprintf(stdout, "PJMP After Poll\n");    	if (i < 0 && errno == EINTR) {	    	continue;	    }	    if (i > 0 && (pfds[0].revents & POLLIN) != 0) {	    	do {	    		j = handle_command(&cf, pfds[0].fd);	    	} while (j == 0);	    }    }