Date: Wed, 23 Feb 2005 13:25:33 GMT From: David Xu <davidxu@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 71659 for review Message-ID: <200502231325.j1NDPXM9055955@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=71659 Change 71659 by davidxu@davidxu_alona on 2005/02/23 13:25:13 Simplify code. Affected files ... .. //depot/projects/davidxu_thread/src/lib/libthread/thread/thr_cond.c#13 edit Differences ... ==== //depot/projects/davidxu_thread/src/lib/libthread/thread/thr_cond.c#13 (text+ko) ==== @@ -265,10 +265,7 @@ int __pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) { - int ret; - - ret = cond_wait_common(cond, mutex, NULL, 1); - return (ret); + return cond_wait_common(cond, mutex, NULL, 1); } int
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200502231325.j1NDPXM9055955>