summaryrefslogtreecommitdiff
path: root/freebsd/sys/sys/hhook.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/sys/hhook.h')
-rw-r--r--freebsd/sys/sys/hhook.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/freebsd/sys/sys/hhook.h b/freebsd/sys/sys/hhook.h
index 51eda1fd..0d54eda4 100644
--- a/freebsd/sys/sys/hhook.h
+++ b/freebsd/sys/sys/hhook.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2010 Lawrence Stewart <lstewart@freebsd.org>
+ * Copyright (c) 2010,2013 Lawrence Stewart <lstewart@freebsd.org>
* Copyright (c) 2010 The FreeBSD Foundation
* All rights reserved.
*
@@ -91,12 +91,14 @@ struct hookinfo {
struct hhook_head {
STAILQ_HEAD(hhook_list, hhook) hhh_hooks;
struct rmlock hhh_lock;
+ uintptr_t hhh_vid;
int32_t hhh_id;
int32_t hhh_nhooks;
int32_t hhh_type;
uint32_t hhh_flags;
volatile uint32_t hhh_refcount;
LIST_ENTRY(hhook_head) hhh_next;
+ LIST_ENTRY(hhook_head) hhh_vnext;
};
/* Public KPI functions. */