Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
neo
Commits
91adca2d
Commit
91adca2d
authored
7 years ago
by
Kirill Smelkov
Browse files
Options
Download
Email Patches
Plain Diff
.
parent
de3ef2c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
go/NOTES-go
go/NOTES-go
+12
-0
go/todo.dot
go/todo.dot
+1
-1
No files found.
go/NOTES-go
View file @
91adca2d
...
...
@@ -3,6 +3,13 @@
- scheduler won't use free P if a G is taking time and other Gs are queued after it on the same P:
https://groups.google.com/forum/#!topic/golang-nuts/8KYER1ALelg
( not quite so exactly. The scheduler is stealing one, but if GC wants to
stop the world, and one goroutine persists looping, others won't be run until
the looping one parks and GC performs.
From this point of view the above issues is actually about
https://github.com/golang/go/issues/10958 )
e870f06c (runtime: yield time slice to most recently readied G)
ea0386f8 (runtime: improve randomized stealing logic)
4bb491b1 (runtime: improve scheduler fairness)
...
...
@@ -46,6 +53,11 @@ runtime/HACKING.md
calls convI2I all the time (no caching) which is not negliable
( recheck it is still true after https://github.com/golang/go/commit/3d1699ea:
-> it is still the case; convI2I cost is ~ 8ns - i.e. it is not big for
non-hot codepaths - uncontended mutex lock/unlock is 15-25ns. )
- x/net/trace to trace requests and connection logging (and packets ?)
...
...
This diff is collapsed.
Click to expand it.
go/todo.dot
View file @
91adca2d
...
...
@@ -38,7 +38,7 @@ digraph {
//Cpy_r_Sgo -> Mpy_vs_Sgo;
Cgo_r_Sgo
->
Cgo
;
Cgo_r_Sgo
->
Sgo
;
Cgo_r_Sgo
->
Sgo
;
Cgo_r_Spy
->
Cgo
;
//Cgo_r_Spy -> Protog_fix;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment