From owner-svn-src-all@freebsd.org Thu Nov 16 21:45:12 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DFC5DEA5B1; Thu, 16 Nov 2017 21:45:12 +0000 (UTC) (envelope-from vangyzen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 CD71A6BED7; Thu, 16 Nov 2017 21:45:11 +0000 (UTC) (envelope-from vangyzen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAGLjARb028182; Thu, 16 Nov 2017 21:45:10 GMT (envelope-from vangyzen@FreeBSD.org) Received: (from vangyzen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAGLjAiG028181; Thu, 16 Nov 2017 21:45:10 GMT (envelope-from vangyzen@FreeBSD.org) Message-Id: <201711162145.vAGLjAiG028181@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vangyzen set sender to vangyzen@FreeBSD.org using -f From: Eric van Gyzen Date: Thu, 16 Nov 2017 21:45:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r325904 - stable/11/sys/sys X-SVN-Group: stable-11 X-SVN-Commit-Author: vangyzen X-SVN-Commit-Paths: stable/11/sys/sys X-SVN-Commit-Revision: 325904 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 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: Thu, 16 Nov 2017 21:45:12 -0000 Author: vangyzen Date: Thu Nov 16 21:45:10 2017 New Revision: 325904 URL: https://svnweb.freebsd.org/changeset/base/325904 Log: MFC r325764 Add __BEGIN_DECLS and __END_DECLS to This allows C++ programs to call _umtx_op(). Sponsored by: Dell EMC Modified: stable/11/sys/sys/umtx.h Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/sys/umtx.h ============================================================================== --- stable/11/sys/sys/umtx.h Thu Nov 16 21:28:14 2017 (r325903) +++ stable/11/sys/sys/umtx.h Thu Nov 16 21:45:10 2017 (r325904) @@ -122,7 +122,11 @@ struct umtx_robust_lists_params { #ifndef _KERNEL +__BEGIN_DECLS + int _umtx_op(void *obj, int op, u_long val, void *uaddr, void *uaddr2); + +__END_DECLS #else