-
Notifications
You must be signed in to change notification settings - Fork 3
/
JtuxPosixIPC.h
221 lines (194 loc) · 5.24 KB
/
JtuxPosixIPC.h
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class jtux_UPosixIPC */
#ifndef _Included_jtux_UPosixIPC
#define _Included_jtux_UPosixIPC
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: jtux_UPosixIPC
* Method: mmap
* Signature: (JIIIIJ)J
*/
JNIEXPORT jlong JNICALL Java_jtux_UPosixIPC_mmap
(JNIEnv *, jclass, jlong, jint, jint, jint, jint, jlong);
/*
* Class: jtux_UPosixIPC
* Method: mq_close
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_mq_1close
(JNIEnv *, jclass, jlong);
/*
* Class: jtux_UPosixIPC
* Method: mq_getattr
* Signature: (JLjtux/UPosixIPC$s_mq_attr;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_mq_1getattr
(JNIEnv *, jclass, jlong, jobject);
/*
* Class: jtux_UPosixIPC
* Method: mq_notify
* Signature: (JLjtux/UProcess$s_sigevent;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_mq_1notify
(JNIEnv *, jclass, jlong, jobject);
/*
* Class: jtux_UPosixIPC
* Method: mq_open
* Signature: (Ljava/lang/String;I)J
*/
JNIEXPORT jlong JNICALL Java_jtux_UPosixIPC_mq_1open__Ljava_lang_String_2I
(JNIEnv *, jclass, jstring, jint);
/*
* Class: jtux_UPosixIPC
* Method: mq_open
* Signature: (Ljava/lang/String;IILjtux/UPosixIPC$s_mq_attr;)J
*/
JNIEXPORT jlong JNICALL Java_jtux_UPosixIPC_mq_1open__Ljava_lang_String_2IILjtux_UPosixIPC_00024s_1mq_1attr_2
(JNIEnv *, jclass, jstring, jint, jint, jobject);
/*
* Class: jtux_UPosixIPC
* Method: mq_receive
* Signature: (J[BILjtux/UUtil$IntHolder;)I
*/
JNIEXPORT jint JNICALL Java_jtux_UPosixIPC_mq_1receive
(JNIEnv *, jclass, jlong, jbyteArray, jint, jobject);
/*
* Class: jtux_UPosixIPC
* Method: mq_send
* Signature: (J[BII)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_mq_1send
(JNIEnv *, jclass, jlong, jbyteArray, jint, jint);
/*
* Class: jtux_UPosixIPC
* Method: mq_setattr
* Signature: (JLjtux/UPosixIPC$s_mq_attr;Ljtux/UPosixIPC$s_mq_attr;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_mq_1setattr
(JNIEnv *, jclass, jlong, jobject, jobject);
/*
* Class: jtux_UPosixIPC
* Method: mq_timedreceive
* Signature: (J[BILjtux/UUtil$IntHolder;Ljtux/UProcess$s_timespec;)I
*/
JNIEXPORT jint JNICALL Java_jtux_UPosixIPC_mq_1timedreceive
(JNIEnv *, jclass, jlong, jbyteArray, jint, jobject, jobject);
/*
* Class: jtux_UPosixIPC
* Method: mq_timedsend
* Signature: (J[BIILjtux/UProcess$s_timespec;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_mq_1timedsend
(JNIEnv *, jclass, jlong, jbyteArray, jint, jint, jobject);
/*
* Class: jtux_UPosixIPC
* Method: mq_unlink
* Signature: (Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_mq_1unlink
(JNIEnv *, jclass, jstring);
/*
* Class: jtux_UPosixIPC
* Method: munmap
* Signature: (JI)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_munmap
(JNIEnv *, jclass, jlong, jint);
/*
* Class: jtux_UPosixIPC
* Method: sem_close
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1close
(JNIEnv *, jclass, jlong);
/*
* Class: jtux_UPosixIPC
* Method: sem_destroy
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1destroy
(JNIEnv *, jclass, jlong);
/*
* Class: jtux_UPosixIPC
* Method: sem_getvalue
* Signature: (JLjtux/UUtil$IntHolder;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1getvalue
(JNIEnv *, jclass, jlong, jobject);
/*
* Class: jtux_UPosixIPC
* Method: sem_init
* Signature: (JII)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1init
(JNIEnv *, jclass, jlong, jint, jint);
/*
* Class: jtux_UPosixIPC
* Method: sem_open
* Signature: (Ljava/lang/String;I)J
*/
JNIEXPORT jlong JNICALL Java_jtux_UPosixIPC_sem_1open__Ljava_lang_String_2I
(JNIEnv *, jclass, jstring, jint);
/*
* Class: jtux_UPosixIPC
* Method: sem_open
* Signature: (Ljava/lang/String;III)J
*/
JNIEXPORT jlong JNICALL Java_jtux_UPosixIPC_sem_1open__Ljava_lang_String_2III
(JNIEnv *, jclass, jstring, jint, jint, jint);
/*
* Class: jtux_UPosixIPC
* Method: sem_post
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1post
(JNIEnv *, jclass, jlong);
/*
* Class: jtux_UPosixIPC
* Method: sem_timedwait
* Signature: (JLjtux/UProcess$s_timespec;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1timedwait
(JNIEnv *, jclass, jlong, jobject);
/*
* Class: jtux_UPosixIPC
* Method: sem_trywait
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1trywait
(JNIEnv *, jclass, jlong);
/*
* Class: jtux_UPosixIPC
* Method: sem_unlink
* Signature: (Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1unlink
(JNIEnv *, jclass, jstring);
/*
* Class: jtux_UPosixIPC
* Method: sem_wait
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_sem_1wait
(JNIEnv *, jclass, jlong);
/*
* Class: jtux_UPosixIPC
* Method: shm_open
* Signature: (Ljava/lang/String;II)I
*/
JNIEXPORT jint JNICALL Java_jtux_UPosixIPC_shm_1open
(JNIEnv *, jclass, jstring, jint, jint);
/*
* Class: jtux_UPosixIPC
* Method: shm_unlink
* Signature: (Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_jtux_UPosixIPC_shm_1unlink
(JNIEnv *, jclass, jstring);
#ifdef __cplusplus
}
#endif
#endif