mirror of
https://github.com/debauchee/barrier.git
synced 2025-06-22 04:27:02 +02:00
Windows only: Added cmake binaries to the repository in order to minimize dependencies.
This commit is contained in:
parent
8de84743bc
commit
1150a78f15
516 changed files with 147760 additions and 0 deletions
38
tool/win/cmake/share/cmake-2.8/Modules/CheckForPthreads.c
Normal file
38
tool/win/cmake/share/cmake-2.8/Modules/CheckForPthreads.c
Normal file
|
@ -0,0 +1,38 @@
|
|||
#include <stdio.h>
|
||||
#include <pthread.h>
|
||||
#include <unistd.h>
|
||||
|
||||
void* runner(void*);
|
||||
|
||||
int res = 0;
|
||||
#ifdef __CLASSIC_C__
|
||||
int main(){
|
||||
int ac;
|
||||
char*av[];
|
||||
#else
|
||||
int main(int ac, char*av[]){
|
||||
#endif
|
||||
pthread_t tid[2];
|
||||
pthread_create(&tid[0], 0, runner, (void*)1);
|
||||
pthread_create(&tid[1], 0, runner, (void*)2);
|
||||
|
||||
#if defined(__BEOS__) && !defined(__ZETA__) && !defined(__HAIKU__) // (no usleep on BeOS 5.)
|
||||
usleep(1); // for strange behavior on single-processor sun
|
||||
#endif
|
||||
|
||||
pthread_join(tid[0], 0);
|
||||
pthread_join(tid[1], 0);
|
||||
if(ac > 1000){return *av[0];}
|
||||
return res;
|
||||
}
|
||||
|
||||
void* runner(void* args)
|
||||
{
|
||||
int cc;
|
||||
for ( cc = 0; cc < 10; cc ++ )
|
||||
{
|
||||
printf("%d CC: %d\n", (int)args, cc);
|
||||
}
|
||||
res ++;
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue