File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
branches/batch/src/libstd/sys/unix Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
29
29
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
30
30
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
- refs/heads/batch: e9908da0d7cf881391c37ff10bb5573f2d8a4198
32
+ refs/heads/batch: 7a05dc273dc193c747853e35231e165b2665e3f0
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: 44a287e6eb22ec3c2a687fc156813577464017f7
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
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