more cleanup
This commit is contained in:
parent
0d7fe5ea61
commit
42cb567f0f
|
@ -72,6 +72,9 @@ static HANDLE blas_threads [MAX_CPU_NUMBER];
|
||||||
static DWORD blas_threads_id[MAX_CPU_NUMBER];
|
static DWORD blas_threads_id[MAX_CPU_NUMBER];
|
||||||
static volatile int thread_target; // target num of live threads, volatile for cross-thread reads
|
static volatile int thread_target; // target num of live threads, volatile for cross-thread reads
|
||||||
|
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
static void legacy_exec(void *func, int mode, blas_arg_t *args, void *sb) {
|
static void legacy_exec(void *func, int mode, blas_arg_t *args, void *sb) {
|
||||||
|
|
||||||
if (!(mode & BLAS_COMPLEX)) {
|
if (!(mode & BLAS_COMPLEX)) {
|
||||||
|
@ -195,8 +198,9 @@ static void legacy_exec(void *func, int mode, blas_arg_t *args, void *sb){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is a main routine of threads. Each thread waits until job is
|
//
|
||||||
// queued.
|
// This is a main routine of threads. Each thread waits until job is queued.
|
||||||
|
//
|
||||||
static DWORD WINAPI blas_thread_server(void *arg) {
|
static DWORD WINAPI blas_thread_server(void *arg) {
|
||||||
|
|
||||||
/* Thread identifier */
|
/* Thread identifier */
|
||||||
|
|
Loading…
Reference in New Issue