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

(-)runtime/wti.c.orig (-1 / +1 lines)
Lines 368-374 Link Here
368
		wtpProcessThrdChanges(pWtp);
368
		wtpProcessThrdChanges(pWtp);
369
		pthread_testcancel(); /* see big comment in function header */
369
		pthread_testcancel(); /* see big comment in function header */
370
#		if !defined(__hpux) /* pthread_yield is missing there! */
370
#		if !defined(__hpux) /* pthread_yield is missing there! */
371
		pthread_yield(); /* see big comment in function header */
371
		sched_yield(); /* see big comment in function header */
372
#		endif
372
#		endif
373
373
374
		/* if we have a rate-limiter set for this worker pool, let's call it. Please
374
		/* if we have a rate-limiter set for this worker pool, let's call it. Please
(-)runtime/wtp.c.orig (-1 / +1 lines)
Lines 481-487 Link Here
481
 	 * hold the queue's mutex, but at least it has a chance to start on a single-CPU system.
481
 	 * hold the queue's mutex, but at least it has a chance to start on a single-CPU system.
482
 	 */
482
 	 */
483
#	if !defined(__hpux) /* pthread_yield is missing there! */
483
#	if !defined(__hpux) /* pthread_yield is missing there! */
484
	pthread_yield();
484
	sched_yield();
485
#	endif
485
#	endif
486
486
487
	/* indicate we just started a worker and would like to see it running */
487
	/* indicate we just started a worker and would like to see it running */
(-)runtime/regexp.c.orig (+1 lines)
Lines 25-30 Link Here
25
 */
25
 */
26
26
27
#include "config.h"
27
#include "config.h"
28
#include <sys/types.h>
28
#include <regex.h>
29
#include <regex.h>
29
#include <string.h>
30
#include <string.h>
30
#include <assert.h>
31
#include <assert.h>

Return to bug 238370