From owner-svn-src-user@FreeBSD.ORG Thu May 1 13:20:54 2014 Return-Path: Delivered-To: svn-src-user@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 9612FD53; Thu, 1 May 2014 13:20:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 840E51AE5; Thu, 1 May 2014 13:20:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s41DKsmV055876; Thu, 1 May 2014 13:20:54 GMT (envelope-from dchagin@svn.freebsd.org) Received: (from dchagin@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s41DKs3i055875; Thu, 1 May 2014 13:20:54 GMT (envelope-from dchagin@svn.freebsd.org) Message-Id: <201405011320.s41DKs3i055875@svn.freebsd.org> From: Dmitry Chagin Date: Thu, 1 May 2014 13:20:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r265175 - user/dchagin/lemul/sys/amd64/linux X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 May 2014 13:20:54 -0000 Author: dchagin Date: Thu May 1 13:20:54 2014 New Revision: 265175 URL: http://svnweb.freebsd.org/changeset/base/265175 Log: Change pointer types used in the linux_prctl syscall to properly-sized types. Modified: user/dchagin/lemul/sys/amd64/linux/syscalls.master Modified: user/dchagin/lemul/sys/amd64/linux/syscalls.master ============================================================================== --- user/dchagin/lemul/sys/amd64/linux/syscalls.master Thu May 1 13:18:41 2014 (r265174) +++ user/dchagin/lemul/sys/amd64/linux/syscalls.master Thu May 1 13:20:54 2014 (r265175) @@ -306,8 +306,9 @@ 155 AUE_PIVOT_ROOT STD { int linux_pivot_root(void); } 156 AUE_SYSCTL STD { int linux_sysctl( \ struct l___sysctl_args *args); } -157 AUE_PRCTL STD { int linux_prctl(l_int option, l_int arg2, l_int arg3, \ - l_int arg4, l_int arg5); } +157 AUE_PRCTL STD { int linux_prctl(l_int option, l_uintptr_t arg2, \ + l_uintptr_t arg3, l_uintptr_t arg4, \ + l_uintptr_t arg5); } 158 AUE_PRCTL STD { int linux_arch_prctl(l_int code, l_ulong addr); } 159 AUE_ADJTIME STD { int linux_adjtimex(void); } 160 AUE_SETRLIMIT STD { int linux_setrlimit(l_uint resource, \