代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/378188/9242550
all x.all
#!/bin/sh
#
# Execute script for program mod2ci of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
e
www.eeworm.com/read/378188/9242581
all x.all
#!/bin/sh
#
# Execute script for program mod2g of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex
www.eeworm.com/read/378188/9242610
all x.all
#!/bin/sh
#
# Execute script for program mod2h of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex
www.eeworm.com/read/378188/9242639
all x.all
#!/bin/sh
#
# Execute script for program mod1d of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex
www.eeworm.com/read/378188/9242700
all x.all
#!/bin/sh
#
# Execute script for program mod2i of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex
www.eeworm.com/read/378188/9242766
all x.all
#!/bin/sh
#
# Execute script for program mod2d of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex
www.eeworm.com/read/178825/9385105
c thread_mutex.c
#include
#include
#include
#define THREAD_NUM 8
void *functionC();
pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
int counter = 0;
main()
{
pthread_t threa
www.eeworm.com/read/178825/9385113
c thread_join.c
#include
#include
#define NTHREADS 10
void *thread_function();
pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
int counter = 0;
main()
{
pthread_t thread_id[NTHREADS];
www.eeworm.com/read/177866/9429949
m4 acx_pthread.m4
dnl @synopsis ACX_PTHREAD([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
dnl
dnl This macro figures out how to build C programs using POSIX
dnl threads. It sets the PTHREAD_LIBS output variable to the thr
www.eeworm.com/read/175598/9540553
c pthread_attr_setstackaddr.c
/*
* pthread_attr_setstackaddr.c
*
* Description:
* This translation unit implements operations on thread attribute objects.
*
* -----------------------------------------------------------------