NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

PR/47703 CVS commit: src/lib/libpthread



The following reply was made to PR lib/47703; it has been noted by GNATS.

From: "Christos Zoulas" <christos%netbsd.org@localhost>
To: gnats-bugs%gnats.NetBSD.org@localhost
Cc: 
Subject: PR/47703 CVS commit: src/lib/libpthread
Date: Thu, 28 Mar 2013 14:07:12 -0400

 Module Name:   src
 Committed By:  christos
 Date:          Thu Mar 28 18:07:12 UTC 2013
 
 Modified Files:
        src/lib/libpthread: pthread_cond.c
 
 Log Message:
 PR/47703: Yasushi Oshima: pthread_cond_timedwait() does not wait
 after call pthread_condattr_setclock(CLOCK_MONOTONIC)
 
 _lwp_park(2) expects a realtime clock, and it gets passed a monotonic
 one.  Since monotonic < real, it never sleeps. This patch adjusts
 the monotonic clock to be a real one before it passes is to
 _lwp_park(2). This is the minimal hacky fix and it will be fixed
 properly in _lwp_park(2) in the future.
 
 XXX: pullup to 6.
 
 
 To generate a diff of this commit:
 cvs rdiff -u -r1.59 -r1.60 src/lib/libpthread/pthread_cond.c
 
 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.
 


Home | Main Index | Thread Index | Old Index