From owner-svn-src-all@FreeBSD.ORG Wed May 7 12:14:25 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10EC9C7E; Wed, 7 May 2014 12:14:25 +0000 (UTC) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0CA3FB3; Wed, 7 May 2014 12:14:24 +0000 (UTC) Received: from compute5.internal (compute5.nyi.mail.srv.osa [10.202.2.45]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id F3E6821124; Wed, 7 May 2014 08:14:21 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute5.internal (MEProxy); Wed, 07 May 2014 08:14:22 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.net; h= message-id:date:from:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; s=mesmtp; bh=w2M/3zFpJCm3DXwFho/nTG4XiCM=; b=nTHVMABaSBbqA8EtwVpzPNbl8IbM 5zV1augF0Kp7I32J4UFPzsvSx/LQEBqpbU9VFuFIYfbSn/Ph752QrK43ylnwYNnM dRfZBKSwVAUrKa9vrQgRbK8jtjStUOeHqaIt609TojpmpViJj8HbH8bhwuAinLvW kaY+8mzyIbjKy1s= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:date:from:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; s=smtpout; bh=w2M/3zFpJCm3DXwFho/nTG 4XiCM=; b=juh7To1bny6l8Nj48cu3oKBPpduelNPvzLYD3GpTcVrsUO9k/idMFy NQCVXLdYUyqU83yoy4Afzf3v/CoiI2WsHaSmWS/sdlot8n6wi/iV9nnOdK8txZ31 O1MjM9RL2sJy4baRhma7aT2jK30KTEiBjrDGk1bbBGl4V1Hags1uk= X-Sasl-enc: vQLd2WGvWe9TWgjAeurqwgE43xXw5/+Y1CsoMWy+UGTp 1399464859 Received: from [192.168.1.70] (unknown [109.148.243.31]) by mail.messagingengine.com (Postfix) with ESMTPA id 47CCF680532; Wed, 7 May 2014 08:14:19 -0400 (EDT) Message-ID: <536A239A.8020502@fastmail.net> Date: Wed, 07 May 2014 13:14:18 +0100 From: Bruce Simpson User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Mark Johnston , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r265456 - head/libexec/rtld-elf References: <201405061807.s46I7xxt048377@svn.freebsd.org> In-Reply-To: <201405061807.s46I7xxt048377@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 12:14:25 -0000 Mark, On 06/05/2014 19:07, Mark Johnston wrote: > Log: > Add a postinit debugger hook to rtld. This will be used by dtrace(1) to halt > the victim process before its entry point is called, at which point probes > and DOF data are registered with the kernel. I recently had a situation where I had to run gdb on a static (and stripped) Linux binary, under the Linuxolator. Perhaps this change can be used there too? Bruce