We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d66cd commit f932d5cCopy full SHA for f932d5c
src/unix/aix/powerpc64.rs
@@ -192,6 +192,29 @@ s_no_extra_traits! {
192
}
193
194
195
+impl siginfo_t {
196
+ pub unsafe fn si_addr(&self) -> *mut ::c_void {
197
+ self.si_addr
198
+ }
199
+
200
+ #[cfg(libc_union)]
201
+ pub unsafe fn si_value(&self) -> ::sigval {
202
+ self.si_value
203
204
205
+ pub unsafe fn si_pid(&self) -> ::pid_t {
206
+ self.si_pid
207
208
209
+ pub unsafe fn si_uid(&self) -> ::uid_t {
210
+ self.si_uid
211
212
213
+ pub unsafe fn si_status(&self) -> ::c_int {
214
+ self.si_status
215
216
+}
217
218
cfg_if! {
219
if #[cfg(feature = "extra_traits")] {
220
#[cfg(libc_union)]
0 commit comments