From patchwork Thu May 24 05:50:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 919594 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 40rz4x0W59z9s2L for ; Thu, 24 May 2018 15:50:41 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="l5OOl89L"; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 40rz4w3DKhzF1H5 for ; Thu, 24 May 2018 15:50:40 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="l5OOl89L"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 40rz4j5fd9zF1Dt for ; Thu, 24 May 2018 15:50:29 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="l5OOl89L"; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 40rz4j17ZZz9s1w; Thu, 24 May 2018 15:50:29 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1527141029; bh=4G5t0j0C4mDr7gnDd6+VEGzFGj+WAuTUFXrTeY8GOTg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=l5OOl89LXPkmFCKqcvNLwPjXTKf7wT+ZJFIKxFew0rcrUti/DwppzqqWecYOtvxky dxC9utHUUO8HHmotUKAWxw7MWtSQdc9fdiAvQynFWnRZccewP7NperP8mIGc7y32xx VojOGLEy6ubTRhlI+VqriIqWFBAmhm1SkmWWalUx7F/t+4WGFjnz5XuRyxz6IerXlx 6G+xTy109pNOajU8WMFMO3rTKme2bfgvTxteSvVILVq0qgmbVEX1SU0M0r1lvNgTyE TX+iq3duoh3fiMyMe3+v/1W3yvhHxRTW+n2WK00xgLYrPP/KHjcZcKTHnjy/4XwPOG 156yHZw7NVAGg== From: Amitay Isaacs To: "pdbg@lists.ozlabs.org"@lists.ozlabs.org Date: Thu, 24 May 2018 15:50:07 +1000 Message-Id: <20180524055017.8801-2-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180524055017.8801-1-amitay@ozlabs.org> References: <20180524055017.8801-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH v3 01/11] main: Include string.h for memset X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Amitay Isaacs MIME-Version: 1.0 Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs --- src/thread.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/thread.c b/src/thread.c index 0e4627f..f32a437 100644 --- a/src/thread.c +++ b/src/thread.c @@ -17,6 +17,7 @@ #include #include #include +#include #include