From owner-cvs-lib Wed Jun 4 06:03:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA26781 for cvs-lib-outgoing; Wed, 4 Jun 1997 06:03:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA26749; Wed, 4 Jun 1997 06:03:15 -0700 (PDT) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA05807; Wed, 4 Jun 1997 06:03:13 -0700 (PDT) Date: Wed, 4 Jun 1997 06:03:13 -0700 (PDT) Message-Id: <199706041303.GAA05807@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_nanosleep.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1997/06/04 06:03:13 PDT Modified files: lib/libc_r/uthread uthread_nanosleep.c Log: Bring back nanosleep from the cold. The addition of the nanosleep syscall was correctly added to libc/sys/Makefile so that it is renamed as _thread_sys_nanosleep(). This syscall is one of those that libc_r has to re-implement because the only behaviour is to block the process. So libc_r just ignores the fact that a nanosleep syscall exists and goes its own way - as it has done all along .... and now it does again. And now a simple program can sleep again. Phew. Revision Changes Path 1.5 +1 -1 src/lib/libc_r/uthread/uthread_nanosleep.c