OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 #include "runtime.h" | 5 #include "runtime.h" |
6 #include "arch_GOARCH.h" | 6 #include "arch_GOARCH.h" |
7 #include "malloc.h" | 7 #include "malloc.h" |
8 #include "stack.h" | 8 #include "stack.h" |
9 #include "race.h" | 9 #include "race.h" |
10 #include "type.h" | 10 #include "type.h" |
(...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1171 // runtime·park continuation on g0. | 1171 // runtime·park continuation on g0. |
1172 static void | 1172 static void |
1173 park0(G *gp) | 1173 park0(G *gp) |
1174 { | 1174 { |
1175 gp->status = Gwaiting; | 1175 gp->status = Gwaiting; |
1176 gp->m = nil; | 1176 gp->m = nil; |
1177 m->curg = nil; | 1177 m->curg = nil; |
1178 if(m->waitunlockf) { | 1178 if(m->waitunlockf) { |
1179 m->waitunlockf(m->waitlock); | 1179 m->waitunlockf(m->waitlock); |
1180 m->waitunlockf = nil; | 1180 m->waitunlockf = nil; |
| 1181 m->waitlock = nil; |
1181 } | 1182 } |
1182 if(m->lockedg) { | 1183 if(m->lockedg) { |
1183 stoplockedm(); | 1184 stoplockedm(); |
1184 execute(gp); // Never returns. | 1185 execute(gp); // Never returns. |
1185 } | 1186 } |
1186 schedule(); | 1187 schedule(); |
1187 } | 1188 } |
1188 | 1189 |
1189 // Scheduler yield. | 1190 // Scheduler yield. |
1190 void | 1191 void |
(...skipping 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2347 } | 2348 } |
2348 } | 2349 } |
2349 if(s != i/2 && s != i/2+1) { | 2350 if(s != i/2 && s != i/2+1) { |
2350 runtime·printf("bad steal %d, want %d or %d, iter %d\n", | 2351 runtime·printf("bad steal %d, want %d or %d, iter %d\n", |
2351 s, i/2, i/2+1, i); | 2352 s, i/2, i/2+1, i); |
2352 runtime·throw("bad steal"); | 2353 runtime·throw("bad steal"); |
2353 } | 2354 } |
2354 } | 2355 } |
2355 } | 2356 } |
2356 | 2357 |
OLD | NEW |