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

Issue 6441097: runtime: improved scheduler (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 8 months ago by dvyukov
Modified:
11 years, 1 month ago
Reviewers:
Visibility:
Public.

Description

runtime: improved scheduler

Patch Set 1 #

Patch Set 2 : diff -r 80c98738fdde https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 3 : diff -r 80c98738fdde https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 4 : diff -r 80c98738fdde https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 5 : diff -r 80c98738fdde https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 6 : diff -r 80c98738fdde https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 7 : diff -r 80c98738fdde https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 8 : diff -r 0e114e4df4ec https://go.googlecode.com/hg/ #

Patch Set 9 : diff -r 0e114e4df4ec https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 10 : diff -r 0e114e4df4ec https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 11 : diff -r 66e0219bd117 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 12 : diff -r 66e0219bd117 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 13 : diff -r 66e0219bd117 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 14 : diff -r 66e0219bd117 https://go.googlecode.com/hg/ #

Patch Set 15 : diff -r 66e0219bd117 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 16 : diff -r 989f373141cc https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 17 : diff -r 989f373141cc https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 18 : diff -r 989f373141cc https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 19 : diff -r 989f373141cc https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 20 : diff -r 989f373141cc https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 21 : diff -r 989f373141cc https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 22 : diff -r 1e84edee3397 https://go.googlecode.com/hg/ #

Patch Set 23 : diff -r 1e84edee3397 https://go.googlecode.com/hg/ #

Patch Set 24 : diff -r 9ebf39aaedaa https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 25 : diff -r 2518eee18c4f https://go.googlecode.com/hg/ #

Patch Set 26 : diff -r 9e610a78455c https://go.googlecode.com/hg/ #

Patch Set 27 : diff -r 9e610a78455c https://go.googlecode.com/hg/ #

Patch Set 28 : diff -r 9e610a78455c https://go.googlecode.com/hg/ #

Patch Set 29 : diff -r 9e610a78455c https://go.googlecode.com/hg/ #

Patch Set 30 : diff -r 9e610a78455c https://go.googlecode.com/hg/ #

Patch Set 31 : diff -r 9e610a78455c https://go.googlecode.com/hg/ #

Patch Set 32 : diff -r 3181682928c9 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 33 : diff -r 3181682928c9 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 34 : diff -r 79225d9f3ced https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 35 : diff -r 79225d9f3ced https://go.googlecode.com/hg/ #

Patch Set 36 : diff -r 5c4859bc123f https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 37 : diff -r 5c4859bc123f https://go.googlecode.com/hg/ #

Patch Set 38 : diff -r 29990fa0951c https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 39 : diff -r 29990fa0951c https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 40 : diff -r 29990fa0951c https://go.googlecode.com/hg/ #

Patch Set 41 : diff -r 29990fa0951c https://go.googlecode.com/hg/ #

Patch Set 42 : diff -r 107e46216b58 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 43 : diff -r 107e46216b58 https://dvyukov%40google.com@code.google.com/p/go/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1216 lines, -806 lines) Patch
M src/pkg/runtime/cpuprof.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/runtime/malloc.goc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +9 lines, -3 lines 0 comments Download
M src/pkg/runtime/mgc0.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +9 lines, -14 lines 0 comments Download
M src/pkg/runtime/mheap.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/runtime/panic.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 chunk +20 lines, -0 lines 0 comments Download
M src/pkg/runtime/proc.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 27 chunks +1111 lines, -770 lines 0 comments Download
M src/pkg/runtime/runtime.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 11 chunks +45 lines, -7 lines 0 comments Download
M src/pkg/runtime/sigqueue.goc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/runtime/thread_darwin.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 5 chunks +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/thread_linux.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +1 line, -1 line 0 comments Download
M src/pkg/runtime/time.goc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +14 lines, -6 lines 0 comments Download

Messages

Total messages: 1
dvyukov
11 years, 1 month ago (2013-02-08 14:02:30 UTC) #1
Moved to https://codereview.appspot.com/7314062
due to issues with codereview site.
Sign in to reply to this message.

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