darling-libkqueue/knote.c
mheily 51a674414b initial import
git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@1 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
2009-10-20 00:31:17 +00:00

68 lines
1.8 KiB
C

/*
* Copyright (c) 2009 Mark Heily <mark@heily.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdlib.h>
#include <string.h>
#include <sys/queue.h>
#include <unistd.h>
#include "private.h"
/* TODO: These must be called with the kqueue lock held */
struct knote *
knote_new(struct filter *filt)
{
struct knote *dst;
if ((dst = calloc(1, sizeof(*dst))) == NULL)
return (NULL);
KNOTE_INSERT(&filt->knl, dst);
return (dst);
}
void
knote_free(struct knote *kn)
{
dbg_printf("knote_free(): filt=%d, ident=%u",
kn->kev.filter, (u_int) kn->kev.ident);
LIST_REMOVE(kn, entries);
free(kn);
}
/* TODO: rename to knote_lookup_ident */
struct knote *
knote_lookup(struct filter *filt, short ident)
{
struct knote *kn;
LIST_FOREACH(kn, &filt->knl, entries) {
if (ident == kn->kev.ident)
break;
}
return (kn);
}
struct knote *
knote_lookup_data(struct filter *filt, intptr_t data)
{
struct knote *kn;
LIST_FOREACH(kn, &filt->knl, entries) {
if (data == kn->kev.data)
break;
}
return (kn);
}