Created
June 3, 2010 17:31
-
-
Save nazgob/424194 to your computer and use it in GitHub Desktop.
atomic variables on gcc / linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://www.alexonlinux.com/multithreaded-simple-data-type-access-and-atomic-variables | |
// gcc -lpthread -D_GNU_SOURCE -o atomic atomic.c | |
#include <stdio.h> | |
#include <pthread.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
#include <sched.h> | |
#include <linux/unistd.h> | |
#include <sys/syscall.h> | |
#include <errno.h> | |
#define INC_TO 1000000 // one million... | |
int global_int = 0; | |
pid_t gettid( void ) | |
{ | |
return syscall( __NR_gettid ); | |
} | |
void *thread_routine( void *arg ) | |
{ | |
int i; | |
int proc_num = (int)(long)arg; | |
cpu_set_t set; | |
CPU_ZERO( &set ); | |
CPU_SET( proc_num, &set ); | |
if (sched_setaffinity( gettid(), sizeof( cpu_set_t ), &set )) | |
{ | |
perror( "sched_setaffinity" ); | |
return NULL; | |
} | |
for (i = 0; i < INC_TO; i++) | |
{ | |
// global_int++; | |
__sync_fetch_and_add( &global_int, 1 ); | |
} | |
return NULL; | |
} | |
int main() | |
{ | |
int procs = 0; | |
int i; | |
pthread_t *thrs; | |
// Getting number of CPUs | |
procs = (int)sysconf( _SC_NPROCESSORS_ONLN ); | |
if (procs < 0) | |
{ | |
perror( "sysconf" ); | |
return -1; | |
} | |
thrs = malloc( sizeof( pthread_t ) * procs ); | |
if (thrs == NULL) | |
{ | |
perror( "malloc" ); | |
return -1; | |
} | |
printf( "Starting %d threads...\n", procs ); | |
for (i = 0; i < procs; i++) | |
{ | |
if (pthread_create( &thrs[i], NULL, thread_routine, | |
(void *)(long)i )) | |
{ | |
perror( "pthread_create" ); | |
procs = i; | |
break; | |
} | |
} | |
for (i = 0; i < procs; i++) | |
pthread_join( thrs[i], NULL ); | |
free( thrs ); | |
printf( "After doing all the math, global_int value is: %d\n", | |
global_int ); | |
printf( "Expected value is: %d\n", INC_TO * procs ); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment