Use standard bool type, instead of non-standard boolean_t

This commit is contained in:
Warner Losh 2020-09-16 06:02:30 +00:00
parent a5c55410b3
commit 9ea860660f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=365790
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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;