From owner-cvs-lib Wed Oct 15 07:12:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA17184 for cvs-lib-outgoing; Wed, 15 Oct 1997 07:12:42 -0700 (PDT) (envelope-from owner-cvs-lib) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA17137; Wed, 15 Oct 1997 07:12:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA25905; Wed, 15 Oct 1997 07:11:09 -0700 (PDT) Date: Wed, 15 Oct 1997 07:11:09 -0700 (PDT) Message-Id: <199710151411.HAA25905@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen usleep.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1997/10/15 07:11:09 PDT Modified files: lib/libc/gen usleep.c Log: Remove old SIGALRM absorbing back-compat code. It wasn't working at all for the entire time that it was there, so obviously nothing needs it anymore. Note, unix98/single-unix spec v2 says that usleep() returns an int rather than a void, to indicate whether the entire time period elapsed (0) or an error (eg: signal handler) interrupted it (returns -1, errno = EINTR) It is probably useful to make this change but I'll test it locally first to see if this will break userland programs [much]... Reviewed by: ache, bde Revision Changes Path 1.17 +1 -83 src/lib/libc/gen/usleep.c