Parallel
optmulti.txt
Associated article: Optimizing Software for Multicore Processors
Tags: .NET C/C++ Parallel Embedded Systems JVM Languages Design
Published source code accompanying the article by Edwin Verplanke in which he examines performance optimization techniques for multicore processors. Also see OPTMULTI.ZIP.
Optimizing Software For Multicore Processors
by Edwin Verplanke
Listing One
{
vp_begin_threads();
vp_threads_begun = 1;
}
void vp_begin_threads()
{
int i;
int mask = 0xf;
vp_pthreads_data = vp_create_thread_data();
if (vp_pthreads_data == NULL)
{
printf("Unable ...


