Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1765)

Side by Side Diff: src/pkg/runtime/proc.c

Issue 8454043: code review 8454043: runtime: reset dangling typed pointer (Closed)
Patch Set: diff -r 38009b76c220 https://dvyukov%40google.com@code.google.com/p/go/ Created 11 years, 12 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/pkg/runtime/runtime.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | src/pkg/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b