diff options
| author | Vito Caputo <vcaputo@pengaru.com> | 2019-11-23 16:59:59 -0800 | 
|---|---|---|
| committer | Vito Caputo <vcaputo@pengaru.com> | 2019-11-23 17:04:45 -0800 | 
| commit | 6bfd66051632fdb8eca4103df2c3c67492d28af7 (patch) | |
| tree | a921e41d24cb1d6a52a158baddf586273b675032 /src/threads.c | |
| parent | ade362b53d721bc2e2c7a62a30c4345014e5f5ce (diff) | |
rototiller: pass cpu to .render_fragment()
Mostly mechanical change, though threads.c needed some jiggering to
make the logical cpu id available to the worker threads.
Now render_fragment() can easily addresss per-cpu data created by
create_context().
Diffstat (limited to 'src/threads.c')
| -rw-r--r-- | src/threads.c | 34 | 
1 files changed, 23 insertions, 11 deletions
| diff --git a/src/threads.c b/src/threads.c index 77ff7d1..0a68861 100644 --- a/src/threads.c +++ b/src/threads.c @@ -7,6 +7,12 @@  #include "threads.h"  #include "util.h" +typedef struct thread_t { +	threads_t	*threads; +	pthread_t	pthread; +	unsigned	id; +} thread_t; +  typedef struct threads_t {  	unsigned		n_threads; @@ -16,7 +22,7 @@ typedef struct threads_t {  	pthread_mutex_t		frame_mutex;  	pthread_cond_t		frame_cond; -	void			(*render_fragment_func)(void *context, fb_fragment_t *fragment); +	void			(*render_fragment_func)(void *context, unsigned cpu, fb_fragment_t *fragment);  	void			*context;  	fb_fragment_t		*fragment;  	rototiller_fragmenter_t	fragmenter; @@ -24,14 +30,15 @@ typedef struct threads_t {  	unsigned		next_fragment;  	unsigned		frame_num; -	pthread_t		threads[]; +	thread_t		threads[];  } threads_t;  /* render fragments using the supplied render function */ -static void * thread_func(void *_threads) +static void * thread_func(void *_thread)  { -	threads_t	*threads = _threads; +	thread_t	*thread = _thread; +	threads_t	*threads = thread->threads;  	unsigned	prev_frame_num = 0;  	pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL); @@ -56,7 +63,7 @@ static void * thread_func(void *_threads)  			if (!threads->fragmenter(threads->context, threads->fragment, frag_num, &fragment))  				break; -			threads->render_fragment_func(threads->context, &fragment); +			threads->render_fragment_func(threads->context, thread->id, &fragment);  		}  		/* report as idle */ @@ -83,7 +90,7 @@ void threads_wait_idle(threads_t *threads)  /* submit a frame's fragments to the threads */ -void threads_frame_submit(threads_t *threads, fb_fragment_t *fragment, rototiller_fragmenter_t fragmenter, void (*render_fragment_func)(void *context, fb_fragment_t *fragment), void *context) +void threads_frame_submit(threads_t *threads, fb_fragment_t *fragment, rototiller_fragmenter_t fragmenter, void (*render_fragment_func)(void *context, unsigned cpu, fb_fragment_t *fragment), void *context)  {  	threads_wait_idle(threads);	/* XXX: likely non-blocking; already happens pre page flip */ @@ -105,7 +112,7 @@ threads_t * threads_create(void)  	unsigned	i, num = get_ncpus();  	threads_t	*threads; -	threads = calloc(1, sizeof(threads_t) + sizeof(pthread_t) * num); +	threads = calloc(1, sizeof(threads_t) + sizeof(thread_t) * num);  	if (!threads)  		return NULL; @@ -117,8 +124,13 @@ threads_t * threads_create(void)  	pthread_mutex_init(&threads->frame_mutex, NULL);  	pthread_cond_init(&threads->frame_cond, NULL); -	for (i = 0; i < num; i++) -		pthread_create(&threads->threads[i], NULL, thread_func, threads); +	for (i = 0; i < num; i++) { +		thread_t	*thread = &threads->threads[i]; + +		thread->threads = threads; +		thread->id = i; +		pthread_create(&thread->pthread, NULL, thread_func, thread); +	}  	return threads;  } @@ -130,10 +142,10 @@ void threads_destroy(threads_t *threads)  	unsigned	i;  	for (i = 0; i < threads->n_threads; i++) -		pthread_cancel(threads->threads[i]); +		pthread_cancel(threads->threads[i].pthread);  	for (i = 0; i < threads->n_threads; i++) -		pthread_join(threads->threads[i], NULL); +		pthread_join(threads->threads[i].pthread, NULL);  	pthread_mutex_destroy(&threads->idle_mutex);  	pthread_cond_destroy(&threads->idle_cond); | 
