From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59370) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wxnf1-0008Bv-Iu for qemu-devel@nongnu.org; Thu, 19 Jun 2014 21:30:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wxneu-00037B-1m for qemu-devel@nongnu.org; Thu, 19 Jun 2014 21:30:35 -0400 Received: from ignoranthack.me ([199.102.79.106]:51548 helo=mail.ignoranthack.me) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wxnet-00036z-TL for qemu-devel@nongnu.org; Thu, 19 Jun 2014 21:30:27 -0400 Received: from [192.168.200.204] (c-50-131-5-126.hsd1.ca.comcast.net [50.131.5.126]) (using SSLv3 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: sbruno@ignoranthack.me) by mail.ignoranthack.me (Postfix) with ESMTPSA id 998BE193B45 for ; Fri, 20 Jun 2014 01:30:26 +0000 (UTC) From: Sean Bruno In-Reply-To: <1402931134-41223-1-git-send-email-sbruno@freebsd.org> References: <1402931134-41223-1-git-send-email-sbruno@freebsd.org> Content-Type: text/plain; charset="us-ascii" Date: Thu, 19 Jun 2014 18:30:25 -0700 Message-ID: <1403227825.43097.23.camel@bruno> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] bsd-user: Implement strace support for getcwd syscall Reply-To: sbruno@freebsd.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel On Mon, 2014-06-16 at 08:05 -0700, Sean Bruno wrote: > Signed-off-by: Sean Bruno > --- > bsd-user/freebsd/strace.list | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/bsd-user/freebsd/strace.list b/bsd-user/freebsd/strace.list > index 2800a2d..f10caaa 100644 > --- a/bsd-user/freebsd/strace.list > +++ b/bsd-user/freebsd/strace.list > @@ -28,6 +28,7 @@ > { TARGET_FREEBSD_NR___acl_set_fd, "__acl_set_fd", "%s(%d, %d, %#x)", NULL, NULL }, > { TARGET_FREEBSD_NR___acl_set_file, "__acl_set_file", "%s(\"%s\", %d, %#x)", NULL, NULL }, > { TARGET_FREEBSD_NR___acl_set_link, "__acl_set_link", "%s(\"%s\", %d, %#x)", NULL, NULL }, > +{ TARGET_FREEBSD_NR___getcwd, "__getcwd", NULL, NULL, NULL }, > { TARGET_FREEBSD_NR___semctl, "__semctl", NULL, NULL, NULL }, > { TARGET_FREEBSD_NR___syscall, "__syscall", NULL, NULL, NULL }, > { TARGET_FREEBSD_NR___sysctl, "__sysctl", NULL, print_sysctl, NULL }, Ping. sean