File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,8 @@ mod os {
126
126
#[ cfg( any( target_arch = "x86" ,
127
127
target_arch = "arm" ,
128
128
target_arch = "mips" ,
129
- target_arch = "mipsel" ) ) ]
129
+ target_arch = "mipsel" ,
130
+ target_arch = "powerpc" ) ) ]
130
131
const __SIZEOF_PTHREAD_MUTEX_T: uint = 24 - 8 ;
131
132
#[ cfg( target_arch = "aarch64" ) ]
132
133
const __SIZEOF_PTHREAD_MUTEX_T: uint = 48 - 8 ;
@@ -136,7 +137,8 @@ mod os {
136
137
target_arch = "arm" ,
137
138
target_arch = "aarch64" ,
138
139
target_arch = "mips" ,
139
- target_arch = "mipsel" ) ) ]
140
+ target_arch = "mipsel" ,
141
+ target_arch = "powerpc" ) ) ]
140
142
const __SIZEOF_PTHREAD_COND_T: uint = 48 - 8 ;
141
143
142
144
#[ cfg( any( target_arch = "x86_64" ,
@@ -146,7 +148,8 @@ mod os {
146
148
#[ cfg( any( target_arch = "x86" ,
147
149
target_arch = "arm" ,
148
150
target_arch = "mips" ,
149
- target_arch = "mipsel" ) ) ]
151
+ target_arch = "mipsel" ,
152
+ target_arch = "powerpc" ) ) ]
150
153
const __SIZEOF_PTHREAD_RWLOCK_T: uint = 32 - 8 ;
151
154
152
155
#[ repr( C ) ]
You can’t perform that action at this time.
0 commit comments