Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Nov 2010 05:49:44 +0000 (UTC)
From:      David Xu <davidxu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r215079 - user/davidxu/libthr/include
Message-ID:  <201011100549.oAA5nicN086529@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: davidxu
Date: Wed Nov 10 05:49:44 2010
New Revision: 215079
URL: http://svn.freebsd.org/changeset/base/215079

Log:
  Add missing pthread_barrier.

Modified:
  user/davidxu/libthr/include/pthread.h

Modified: user/davidxu/libthr/include/pthread.h
==============================================================================
--- user/davidxu/libthr/include/pthread.h	Wed Nov 10 05:32:36 2010	(r215078)
+++ user/davidxu/libthr/include/pthread.h	Wed Nov 10 05:49:44 2010	(r215079)
@@ -196,11 +196,11 @@ struct pthread_rwlock {
 };
 
 struct pthread_barrier {
-	pthread_mutex_t		__lock;
-	pthread_cond_t		__cond;
-	__uint64_t		__cycle;
-	__uint32_t		__count;
-	__uint32_t		__waiters;
+	pthread_mutex_t	__lock;
+	pthread_cond_t	__cond;
+	__uint64_t	__cycle;
+	__uint32_t	__count;
+	__uint32_t	__waiters;
 };
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011100549.oAA5nicN086529>