summaryrefslogtreecommitdiff
path: root/libports
diff options
context:
space:
mode:
Diffstat (limited to 'libports')
-rw-r--r--libports/mig-decls.h6
-rw-r--r--libports/mig-mutate.h4
2 files changed, 10 insertions, 0 deletions
diff --git a/libports/mig-decls.h b/libports/mig-decls.h
index f8c4f15c..c88ff261 100644
--- a/libports/mig-decls.h
+++ b/libports/mig-decls.h
@@ -30,6 +30,12 @@ begin_using_port_info_port (mach_port_t port)
return ports_lookup_port (0, port, 0);
}
+static inline struct port_info * __attribute__ ((unused))
+begin_using_port_info_payload (unsigned long payload)
+{
+ return ports_lookup_payload (0, payload, 0);
+}
+
static inline void __attribute__ ((unused))
end_using_port_info (struct port_info *p)
{
diff --git a/libports/mig-mutate.h b/libports/mig-mutate.h
index 4c011b6a..1c96fea2 100644
--- a/libports/mig-mutate.h
+++ b/libports/mig-mutate.h
@@ -19,6 +19,8 @@
#define NOTIFY_INTRAN \
port_info_t begin_using_port_info_port (mach_port_t)
+#define NOTIFY_INTRAN_PAYLOAD \
+ port_info_t begin_using_port_info_payload
#define NOTIFY_DESTRUCTOR \
end_using_port_info (port_info_t)
#define NOTIFY_IMPORTS \
@@ -26,6 +28,8 @@
#define INTERRUPT_INTRAN \
port_info_t begin_using_port_info_port (mach_port_t)
+#define INTERRUPT_INTRAN_PAYLOAD \
+ port_info_t begin_using_port_info_payload
#define INTERRUPT_DESTRUCTOR \
end_using_port_info (port_info_t)
#define INTERRUPT_IMPORTS \