1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
diff --git a/libpager/mig-mutate.h b/libpager/mig-mutate.h
index 54f7de8..9e9065f 100644
--- a/libpager/mig-mutate.h
+++ b/libpager/mig-mutate.h
@@ -20,3 +20,10 @@
#define MEMORY_OBJECT_INTRAN pager_t begin_using_pager (memory_object_t)
#define MEMORY_OBJECT_DESTRUCTOR end_using_pager (pager_t)
#define MEMORY_OBJECT_IMPORTS import "mig-decls.h";
+
+#define NOTIFY_INTRAN \
+ port_info_t begin_using_port_info_port (mach_port_t)
+#define NOTIFY_DESTRUCTOR \
+ end_using_port_info (port_info_t)
+#define NOTIFY_IMPORTS \
+ import "libports/mig-decls.h";
diff --git a/libpager/notify-stubs.c b/libpager/notify-stubs.c
index 2d791aa..ba13882 100644
--- a/libpager/notify-stubs.c
+++ b/libpager/notify-stubs.c
@@ -23,54 +23,54 @@
#include <errno.h>
error_t
-_pager_do_seqnos_mach_notify_port_deleted (mach_port_t notify,
+_pager_do_seqnos_mach_notify_port_deleted (struct port_info *pi,
mach_port_seqno_t seqno,
mach_port_t name
__attribute__ ((unused)))
{
- _pager_update_seqno (notify, seqno);
+ _pager_update_seqno_p ((struct pager *) pi, seqno);
return 0;
}
error_t
-_pager_do_seqnos_mach_notify_msg_accepted (mach_port_t notify,
+_pager_do_seqnos_mach_notify_msg_accepted (struct port_info *pi,
mach_port_seqno_t seqno,
mach_port_t name
__attribute__ ((unused)))
{
- _pager_update_seqno (notify, seqno);
+ _pager_update_seqno_p ((struct pager *) pi, seqno);
return 0;
}
error_t
-_pager_do_seqnos_mach_notify_port_destroyed (mach_port_t notify,
+_pager_do_seqnos_mach_notify_port_destroyed (struct port_info *pi,
mach_port_seqno_t seqno,
mach_port_t name
__attribute__ ((unused)))
{
- _pager_update_seqno (notify, seqno);
+ _pager_update_seqno_p ((struct pager *) pi, seqno);
return 0;
}
error_t
-_pager_do_seqnos_mach_notify_send_once (mach_port_t notify,
+_pager_do_seqnos_mach_notify_send_once (struct port_info *pi,
mach_port_seqno_t seqno)
{
- _pager_update_seqno (notify, seqno);
+ _pager_update_seqno_p ((struct pager *) pi, seqno);
return 0;
}
error_t
-_pager_do_seqnos_mach_notify_dead_name (mach_port_t notify,
+_pager_do_seqnos_mach_notify_dead_name (struct port_info *pi,
mach_port_seqno_t seqno,
mach_port_t name
__attribute__ ((unused)))
{
- _pager_update_seqno (notify, seqno);
+ _pager_update_seqno_p ((struct pager *) pi, seqno);
return 0;
}
|