Browse Source

distinguish the two trylock functions

Samuel Thibault 7 years ago
parent
commit
9e1ef8403c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/starpu_thread_util.h

+ 1 - 1
include/starpu_thread_util.h

@@ -133,7 +133,7 @@ int _starpu_pthread_mutex_trylock_sched(starpu_pthread_mutex_t *mutex, char *fil
 	int p_ret = starpu_pthread_mutex_trylock_sched(mutex);
 	if (STARPU_UNLIKELY(p_ret != 0 && p_ret != EBUSY)) {
 		fprintf(stderr,
-			"%s:%d starpu_pthread_mutex_trylock: %s\n",
+			"%s:%d starpu_pthread_mutex_trylock_sched: %s\n",
 			file, line, strerror(p_ret));
 		STARPU_ABORT();
 	}