소스 검색

src/common/thread.c: function xbt_mutex_acquire does not have a return value

Nathalie Furmento 13 년 전
부모
커밋
869c4940f0
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/common/thread.c

+ 2 - 1
src/common/thread.c

@@ -120,7 +120,8 @@ int starpu_pthread_mutex_trylock(starpu_pthread_mutex_t *mutex)
 	file += sizeof(char);
 	_STARPU_TRACE_TRYLOCK_MUTEX(file,__LINE__);
 
-	return xbt_mutex_acquire(*mutex);
+	xbt_mutex_acquire(*mutex);
+	return 0;
 }
 
 static int used_key[MAX_TSD];