Skip to content

Commit d68e4ba

Browse files
authored
Fix cut/paste glitch
1 parent 635c9e4 commit d68e4ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

driver/others/blas_server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ int blas_thread_init(void){
572572
thread_status[i].status = THREAD_STATUS_WAKEUP;
573573

574574
pthread_mutex_init(&thread_status[i].lock, NULL);
575-
pthread_cond_init (&thread_status[i].wakeup, NULL)
575+
pthread_cond_init (&thread_status[i].wakeup, NULL);
576576

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

0 commit comments

Comments
 (0)