Browse Source

Fix cut/paste glitch

tags/v0.3.10^2
Martin Kroeker GitHub 5 years ago
parent
commit
d68e4ba59b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      driver/others/blas_server.c

+ 1
- 1
driver/others/blas_server.c View File

@@ -572,7 +572,7 @@ int blas_thread_init(void){
thread_status[i].status = THREAD_STATUS_WAKEUP;

pthread_mutex_init(&thread_status[i].lock, NULL);
pthread_cond_init (&thread_status[i].wakeup, NULL)
pthread_cond_init (&thread_status[i].wakeup, NULL);

#ifdef NEED_STACKATTR
ret=pthread_create(&blas_threads[i], &attr,


Loading…
Cancel
Save