Re: svn commit: r276802 - head/lib/libc/gen

2015-01-08 Thread Bruce Evans
On Thu, 8 Jan 2015, Konstantin Belousov wrote: On Thu, Jan 08, 2015 at 01:27:44AM +, Craig Rodrigues wrote: @@ -43,11 +43,11 @@ .Sh DESCRIPTION The .Fn sleep -function suspends execution of the calling process until either +function suspends execution of the calling thread until either

Re: svn commit: r276802 - head/lib/libc/gen

2015-01-08 Thread Konstantin Belousov
On Thu, Jan 08, 2015 at 01:27:44AM +, Craig Rodrigues wrote: > @@ -43,11 +43,11 @@ > .Sh DESCRIPTION > The > .Fn sleep > -function suspends execution of the calling process until either > +function suspends execution of the calling thread until either > .Fa seconds > -seconds have elapsed o

svn commit: r276802 - head/lib/libc/gen

2015-01-07 Thread Craig Rodrigues
Author: rodrigc Date: Thu Jan 8 01:27:43 2015 New Revision: 276802 URL: https://svnweb.freebsd.org/changeset/base/276802 Log: Clarify text to be consistent with nanosleep(2), since sleep(3) is implemented in terms of nanosleep(2). This is similar to the sleep(3) man page for Darwin. Mod