Remove an extraneous parameter from SIGIO_ASSERT_LOCKED()

Reported by:	hselasky
MFC with:	r367588
This commit is contained in:
Mark Johnston 2020-11-11 14:03:49 +00:00
parent f44994874b
commit 0da7ac7cbb

View File

@ -337,7 +337,7 @@ struct thread;
#define SIGIO_TRYLOCK() mtx_trylock(&sigio_lock)
#define SIGIO_UNLOCK() mtx_unlock(&sigio_lock)
#define SIGIO_LOCKED() mtx_owned(&sigio_lock)
#define SIGIO_ASSERT_LOCKED(type) mtx_assert(&sigio_lock, MA_OWNED)
#define SIGIO_ASSERT_LOCKED() mtx_assert(&sigio_lock, MA_OWNED)
extern struct mtx sigio_lock;