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

Delta Between Two Patch Sets: src/pkg/runtime/mheap.c

Issue 5714049: code review 5714049: runtime: run init on main thread (Closed)
Left Patch Set: Created 13 years, 1 month ago
Right Patch Set: diff -r d9b20dc0a595 https://go.googlecode.com/hg/ Created 13 years, 1 month 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:
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | src/pkg/runtime/proc.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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 // Page heap. 5 // Page heap.
6 // 6 //
7 // See malloc.h for overview. 7 // See malloc.h for overview.
8 // 8 //
9 // When a MSpan is in the heap free list, state == MSpanFree 9 // When a MSpan is in the heap free list, state == MSpanFree
10 // and heapmap(s->start) == span, heapmap(s->start+s->npages-1) == span. 10 // and heapmap(s->start) == span, heapmap(s->start+s->npages-1) == span.
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 } 319 }
320 320
321 // Insert s into appropriate list. 321 // Insert s into appropriate list.
322 if(s->npages < nelem(h->free)) 322 if(s->npages < nelem(h->free))
323 runtime·MSpanList_Insert(&h->free[s->npages], s); 323 runtime·MSpanList_Insert(&h->free[s->npages], s);
324 else 324 else
325 runtime·MSpanList_Insert(&h->large, s); 325 runtime·MSpanList_Insert(&h->large, s);
326 } 326 }
327 327
328 // Release (part of) unused memory to OS. 328 // Release (part of) unused memory to OS.
329 // Goroutine created in runtime·schedinit. 329 // Goroutine created at startup.
330 // Loop forever. 330 // Loop forever.
331 void 331 void
332 runtime·MHeap_Scavenger(void) 332 runtime·MHeap_Scavenger(void)
333 { 333 {
334 MHeap *h; 334 MHeap *h;
335 MSpan *s, *list; 335 MSpan *s, *list;
336 uint64 tick, now, forcegc, limit; 336 uint64 tick, now, forcegc, limit;
337 uint32 k, i; 337 uint32 k, i;
338 uintptr released, sumreleased; 338 uintptr released, sumreleased;
339 byte *env; 339 byte *env;
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 runtime·printf("failed MSpanList_Insert %p %p %p\n", span, span- >next, span->prev); 452 runtime·printf("failed MSpanList_Insert %p %p %p\n", span, span- >next, span->prev);
453 runtime·throw("MSpanList_Insert"); 453 runtime·throw("MSpanList_Insert");
454 } 454 }
455 span->next = list->next; 455 span->next = list->next;
456 span->prev = list; 456 span->prev = list;
457 span->next->prev = span; 457 span->next->prev = span;
458 span->prev->next = span; 458 span->prev->next = span;
459 } 459 }
460 460
461 461
LEFTRIGHT

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