Ver código fonte

src/common/starpu_spinlock.h: fix type name

Nathalie Furmento 11 anos atrás
pai
commit
924ea21695
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/common/starpu_spinlock.h

+ 1 - 1
src/common/starpu_spinlock.h

@@ -31,7 +31,7 @@ struct _starpu_spinlock
 	starpu_pthread_mutexattr_t errcheck_attr;
 	starpu_pthread_mutex_t errcheck_lock;
 #elif defined(HAVE_PTHREAD_SPIN_LOCK)
-	_starpu_pthread_spinlock_t lock;
+	starpu_pthread_spinlock_t lock;
 #else
 	/* we only have a trivial implementation yet ! */
 	uint32_t taken STARPU_ATTRIBUTE_ALIGNED(16);