From patchwork Wed May 20 21:23:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 474655 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id BE537140D5D for ; Thu, 21 May 2015 07:23:58 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=sourceware.org header.i=@sourceware.org header.b=lCvbMrRZ; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; q= dns; s=default; b=PbngZoK0ql/he33ArNDZY3gvQR5ibpZfdjD0UM8+tR/Bsw 6uZ8RFCROZkzrApP1xyHLg/LKOnRxs1WP/AgteVLXGuSa+Hxlgq2KAmozj0u5XoS XmfM2XcQ41iPGuSj3L0AnYBUmzy3a/f+o6HA+F+B/dMzT/4vOUyX79pEb7zK0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; s= default; bh=VYVIk4ruo1b1p288C8Et4Lf5ZBA=; b=lCvbMrRZ8GssD+7MTL/1 fywvo57c24XgphckFNP1/i5ZHJjrMTCqq89X7Q20cbNzZx3Czeu62dWU9VT2aFuj aJKC80A+aqNV+xdL6eW+I8qQ4y1EL4Iox00Xfnc39N7/g3QQjMKXNY4m+V4cWjfx d0STuB75eWK8Dts0374VW2U= Received: (qmail 88004 invoked by alias); 20 May 2015 21:23:52 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 87994 invoked by uid 89); 20 May 2015 21:23:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [COMMITTED PATCH] Move usleep.c using nanosleep to sysdeps/posix. Message-Id: <20150520212348.575FE2C39E3@topped-with-meat.com> Date: Wed, 20 May 2015 14:23:48 -0700 (PDT) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=SvUDtp+0 c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=14OXPxybAAAA:8 a=kj9zAlcOel0A:10 a=hOe2yjtxAAAA:8 a=GwSZJt0zjdWD2Ea2_H4A:9 a=CjuIK1q_8ugA:10 a=K05YkyBkpa4A:10 a=cg6IiEFhT8YA:10 a=ziDyhqStP90A:10 This is a pure file move and has no effect on Linux or Hurd configurations. Thanks, Roland 2015-05-20 Roland McGrath * sysdeps/unix/sysv/linux/usleep.c: Moved to ... * sysdeps/posix/usleep.c: ... here. diff --git a/sysdeps/unix/sysv/linux/usleep.c b/sysdeps/posix/usleep.c similarity index 100% rename from sysdeps/unix/sysv/linux/usleep.c rename to sysdeps/posix/usleep.c