diff options
author | jmg <jmg@FreeBSD.org> | 2005-03-25 16:23:48 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2005-03-25 16:23:48 +0000 |
commit | 40f0657f94e1dc8a14968814725d960b4145f2f4 (patch) | |
tree | e447d6d2d8a62676550a6ae0ad9d9e18c3b568fe | |
parent | 8f6333ad923689e66f652a48173d747e52b3f26b (diff) | |
download | FreeBSD-src-40f0657f94e1dc8a14968814725d960b4145f2f4.zip FreeBSD-src-40f0657f94e1dc8a14968814725d960b4145f2f4.tar.gz |
remove unimplemented part of the interface..
MFC after: 3 days
-rw-r--r-- | sys/sys/event.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/sys/event.h b/sys/sys/event.h index 5fdc88f..ef20bec 100644 --- a/sys/sys/event.h +++ b/sys/sys/event.h @@ -140,8 +140,6 @@ MALLOC_DECLARE(M_KQUEUE); #define KNOTE(list, hist, lock) knote(list, hist, lock) #define KNOTE_LOCKED(list, hint) knote(list, hint, 1) #define KNOTE_UNLOCKED(list, hint) knote(list, hint, 0) -#define KNOTE_STATUS_BEGIN(kn) knote_status(kn, 1) -#define KNOTE_STATUS_END(kn) knote_status(kn, 0) /* * Flag indicating hint is a signal. Used by EVFILT_SIGNAL, and also @@ -200,7 +198,6 @@ struct proc; struct knlist; extern void knote(struct knlist *list, long hint, int islocked); -extern void knote_status(struct knote *kn, int begin); extern void knlist_add(struct knlist *knl, struct knote *kn, int islocked); extern void knlist_remove(struct knlist *knl, struct knote *kn, int islocked); extern void knlist_remove_inevent(struct knlist *knl, struct knote *kn); |