diff options
author | jasone <jasone@FreeBSD.org> | 2001-01-25 07:29:54 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2001-01-25 07:29:54 +0000 |
commit | bf5d4c5ca44442f4866ea6a222feb97d51bfd68c (patch) | |
tree | 8b9962519f035d91669999190ca256bf4fd05744 /sys | |
parent | 7283cbc99bcb7977cf5804de58be891173794d0a (diff) | |
download | FreeBSD-src-bf5d4c5ca44442f4866ea6a222feb97d51bfd68c.zip FreeBSD-src-bf5d4c5ca44442f4866ea6a222feb97d51bfd68c.tar.gz |
Remove CV_DECLARE(), which serves no useful purpose.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/condvar.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/sys/condvar.h b/sys/sys/condvar.h index 6e0581a..5460024 100644 --- a/sys/sys/condvar.h +++ b/sys/sys/condvar.h @@ -50,10 +50,6 @@ struct cv { }; #ifdef _KERNEL -#define CV_DECLARE(modifiers, name, descr) \ - static const char __cv_descr_##name[] = descr; \ - modifiers struct cv name = {{NULL, NULL}, NULL, __cv_descr_##name} - void cv_init(struct cv *cvp, const char *desc); void cv_destroy(struct cv *cvp); |