Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Apr 2013 14:21:36 +0000 (UTC)
From:      Jilles Tjoelker <jilles@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r249985 - head/lib/libthr/thread
Message-ID:  <201304271421.r3RELaYc019358@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jilles
Date: Sat Apr 27 14:21:36 2013
New Revision: 249985
URL: http://svnweb.freebsd.org/changeset/base/249985

Log:
  libthr: Fix a parameter name in an internal header file.

Modified:
  head/lib/libthr/thread/thr_umtx.h

Modified: head/lib/libthr/thread/thr_umtx.h
==============================================================================
--- head/lib/libthr/thread/thr_umtx.h	Sat Apr 27 14:07:25 2013	(r249984)
+++ head/lib/libthr/thread/thr_umtx.h	Sat Apr 27 14:21:36 2013	(r249985)
@@ -56,7 +56,7 @@ int _thr_umtx_timedwait_uint(volatile u_
 	const struct timespec *timeout, int shared) __hidden;
 int _thr_umtx_wake(volatile void *mtx, int count, int shared) __hidden;
 int _thr_ucond_wait(struct ucond *cv, struct umutex *m,
-        const struct timespec *timeout, int check_unpaking) __hidden;
+        const struct timespec *timeout, int flags) __hidden;
 void _thr_ucond_init(struct ucond *cv) __hidden;
 int _thr_ucond_signal(struct ucond *cv) __hidden;
 int _thr_ucond_broadcast(struct ucond *cv) __hidden;



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