diff options
author | bde <bde@FreeBSD.org> | 2001-10-10 10:26:07 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-10 10:26:07 +0000 |
commit | 339786b751e72bf6e95c6197ea326258b7400971 (patch) | |
tree | d6f54880297d111b9d0f646475a4723eef0a6653 | |
parent | 1afb151feb8e247e22b81ba51d99de6fc23d1296 (diff) | |
download | FreeBSD-src-339786b751e72bf6e95c6197ea326258b7400971.zip FreeBSD-src-339786b751e72bf6e95c6197ea326258b7400971.tar.gz |
Added used includes. <sys/_lock.h> is a prerequisite for <sys/_mutex.h>,
and <sys/queue.h> is a prerequisite for both <sys/_lock.h> and
<sys_mutex.h>.
-rw-r--r-- | sys/sys/sema.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/sema.h b/sys/sys/sema.h index 91f0fc2b..473832e 100644 --- a/sys/sys/sema.h +++ b/sys/sys/sema.h @@ -30,6 +30,8 @@ #ifndef _SYS_SEMA_H_ #define _SYS_SEMA_H_ +#include <sys/queue.h> +#include <sys/_lock.h> #include <sys/_mutex.h> #include <sys/condvar.h> |