From owner-svn-src-user@FreeBSD.ORG Fri May 30 18:04:11 2014 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4CE20C88; Fri, 30 May 2014 18:04:11 +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 3B29B20E0; Fri, 30 May 2014 18:04:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4UI4B2B095545; Fri, 30 May 2014 18:04:11 GMT (envelope-from cognet@svn.freebsd.org) Received: (from cognet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4UI4B0r095544; Fri, 30 May 2014 18:04:11 GMT (envelope-from cognet@svn.freebsd.org) Message-Id: <201405301804.s4UI4B0r095544@svn.freebsd.org> From: Olivier Houchard Date: Fri, 30 May 2014 18:04:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r266897 - user/dchagin/lemul/sys/amd64/linux32 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.18 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: Fri, 30 May 2014 18:04:11 -0000 Author: cognet Date: Fri May 30 18:04:10 2014 New Revision: 266897 URL: http://svnweb.freebsd.org/changeset/base/266897 Log: Include opt_compat.h, so that COMPAT_LINUX32 is defined, and we can access to the semop structs and functions. Modified: user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c Modified: user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c ============================================================================== --- user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c Fri May 30 18:03:16 2014 (r266896) +++ user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c Fri May 30 18:04:10 2014 (r266897) @@ -31,6 +31,8 @@ #include __FBSDID("$FreeBSD$"); +#include "opt_compat.h" + #include #include #include @@ -72,6 +74,7 @@ __FBSDID("$FreeBSD$"); #include #include + struct l_old_select_argv { l_int nfds; l_uintptr_t readfds;