From owner-svn-src-all@freebsd.org  Wed Sep 16 06:02:31 2020
Return-Path: <owner-svn-src-all@freebsd.org>
Delivered-To: svn-src-all@mailman.nyi.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1])
 by mailman.nyi.freebsd.org (Postfix) with ESMTP id 23DB13EF471;
 Wed, 16 Sep 2020 06:02:31 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org
 [IPv6:2610:1c1:1:606c::19:3])
 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256
 client-signature RSA-PSS (4096 bits) client-digest SHA256)
 (Client CN "mxrelay.nyi.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 4BrqJ708mmz4GwV;
 Wed, 16 Sep 2020 06:02:31 +0000 (UTC) (envelope-from imp@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DCC6914BAD;
 Wed, 16 Sep 2020 06:02:30 +0000 (UTC) (envelope-from imp@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08G62UbK054226;
 Wed, 16 Sep 2020 06:02:30 GMT (envelope-from imp@FreeBSD.org)
Received: (from imp@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08G62UFa054224;
 Wed, 16 Sep 2020 06:02:30 GMT (envelope-from imp@FreeBSD.org)
Message-Id: <202009160602.08G62UFa054224@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org
 using -f
From: Warner Losh <imp@FreeBSD.org>
Date: Wed, 16 Sep 2020 06:02:30 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
 svn-src-head@freebsd.org
Subject: svn commit: r365790 - in head/sys: kern sys
X-SVN-Group: head
X-SVN-Commit-Author: imp
X-SVN-Commit-Paths: in head/sys: kern sys
X-SVN-Commit-Revision: 365790
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.33
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for &quot;
 user&quot; and &quot; projects&quot; \)" <svn-src-all.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-all>,
 <mailto:svn-src-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-all/>
List-Post: <mailto:svn-src-all@freebsd.org>
List-Help: <mailto:svn-src-all-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-all>,
 <mailto:svn-src-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 16 Sep 2020 06:02:31 -0000

Author: imp
Date: Wed Sep 16 06:02:30 2020
New Revision: 365790
URL: https://svnweb.freebsd.org/changeset/base/365790

Log:
  Use standard bool type, instead of non-standard boolean_t

Modified:
  head/sys/kern/subr_bus.c
  head/sys/sys/devctl.h

Modified: head/sys/kern/subr_bus.c
==============================================================================
--- head/sys/kern/subr_bus.c	Wed Sep 16 02:25:18 2020	(r365789)
+++ head/sys/kern/subr_bus.c	Wed Sep 16 06:02:30 2020	(r365790)
@@ -584,7 +584,7 @@ filt_devctl_read(struct knote *kn, long hint)
 /**
  * @brief Return whether the userland process is running
  */
-boolean_t
+bool
 devctl_process_running(void)
 {
 	return (devsoftc.inuse == 1);

Modified: head/sys/sys/devctl.h
==============================================================================
--- head/sys/sys/devctl.h	Wed Sep 16 02:25:18 2020	(r365789)
+++ head/sys/sys/devctl.h	Wed Sep 16 06:02:30 2020	(r365790)
@@ -35,7 +35,7 @@
  * devctl hooks.  Typically one should use the devctl_notify
  * hook to send the message.
  */
-boolean_t devctl_process_running(void);
+bool devctl_process_running(void);
 void devctl_notify(const char *__system, const char *__subsystem,
     const char *__type, const char *__data);
 struct sbuf;