Some boys take a beautiful seltrue_filtops and hide her away from

the rest of the world - but let's not.
This commit is contained in:
pooka 2007-12-03 15:21:57 +00:00
parent 7b4886ba60
commit 01f5a6d143
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_event.c,v 1.41 2007/10/08 15:12:07 ad Exp $ */
/* $NetBSD: kern_event.c,v 1.42 2007/12/03 15:21:57 pooka Exp $ */
/*-
* Copyright (c) 1999,2000,2001 Jonathan Lemon <jlemon@FreeBSD.org>
@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_event.c,v 1.41 2007/10/08 15:12:07 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_event.c,v 1.42 2007/12/03 15:21:57 pooka Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -588,7 +588,7 @@ filt_seltruedetach(struct knote *kn)
/* Nothing to do */
}
static const struct filterops seltrue_filtops =
const struct filterops seltrue_filtops =
{ 1, NULL, filt_seltruedetach, filt_seltrue };
int

View File

@ -1,4 +1,4 @@
/* $NetBSD: event.h,v 1.18 2007/07/21 19:20:40 ad Exp $ */
/* $NetBSD: event.h,v 1.19 2007/12/03 15:21:57 pooka Exp $ */
/*-
* Copyright (c) 1999,2000,2001 Jonathan Lemon <jlemon@FreeBSD.org>
* All rights reserved.
@ -228,6 +228,7 @@ int kfilter_register(const char *, const struct filterops *, int *);
int kfilter_unregister(const char *);
int filt_seltrue(struct knote *, long);
extern const struct filterops seltrue_filtops;
#else /* !_KERNEL */