Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 144842
Collapse All | Expand All

(-)xmmspipe-0.5.3/xmmspipe.c.orig (-1 / +4 lines)
Lines 134-138 Link Here
134
	//assert(is_controlpipe);
134
	//assert(is_controlpipe);
135
	FD_SET(controlpipe[0], &set);
135
	FD_SET(controlpipe[0], &set);
136
	status = select(maxfd + 1, &set, NULL, NULL, NULL);
136
	do {
137
	    errno = 0;
138
	    status = select(maxfd + 1, &set, NULL, NULL, NULL);
139
	} while (status == -1 && errno == EINTR);
137
	if (status == -1) break;
140
	if (status == -1) break;
138
141

Return to bug 144842