File tree 1 file changed +7
-2
lines changed
src/unix/linux_like/linux/gnu/b64/powerpc64
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,8 @@ s_no_extra_traits! {
4
4
pub struct max_align_t {
5
5
priv_: [ i64 ; 4 ]
6
6
}
7
- }
8
7
9
- s ! {
8
+ # [ allow ( missing_debug_implementations ) ]
10
9
pub struct ucontext_t {
11
10
pub uc_flags: :: c_ulong,
12
11
pub uc_link: * mut ucontext_t,
15
14
pub uc_mcontext: mcontext_t,
16
15
}
17
16
17
+ #[ allow( missing_debug_implementations) ]
18
18
pub struct pt_regs {
19
19
pub gpr: [ :: c_ulong; 32 ] ,
20
20
pub nip: :: c_ulong,
31
31
pub result: :: c_ulong,
32
32
}
33
33
34
+ #[ allow( missing_debug_implementations) ]
34
35
#[ repr( align( 16 ) ) ]
35
36
pub struct mcontext_t {
36
37
__glibc_reserved: [ :: c_ulong; 4 ] ,
45
46
pub vmx_reserve: [ :: c_long; 69 ] , // # define __NVRREG 34 (34*2+1)
46
47
}
47
48
49
+ #[ allow( missing_debug_implementations) ]
48
50
#[ repr( align( 16 ) ) ]
49
51
pub struct vrregset_t {
50
52
pub vrregs: [ [ :: c_uint; 4 ] ; 32 ] ,
53
55
__pad: [ :: c_uint; 3 ] ,
54
56
}
55
57
58
+ #[ allow( missing_debug_implementations) ]
56
59
#[ repr( align( 16 ) ) ]
57
60
pub struct vscr_t {
58
61
#[ cfg( target_endian = "big" ) ]
65
68
#[ cfg( target_endian = "little" ) ]
66
69
__pad: [ :: c_uint; 3 ] ,
67
70
}
71
+ }
68
72
73
+ s ! {
69
74
#[ repr( align( 8 ) ) ]
70
75
pub struct clone_args {
71
76
pub flags: :: c_ulonglong,
You can’t perform that action at this time.
0 commit comments