Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
91adca2d
Commit
91adca2d
authored
Jan 25, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
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 @@
...
@@ -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:
- 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
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)
e870f06c (runtime: yield time slice to most recently readied G)
ea0386f8 (runtime: improve randomized stealing logic)
ea0386f8 (runtime: improve randomized stealing logic)
4bb491b1 (runtime: improve scheduler fairness)
4bb491b1 (runtime: improve scheduler fairness)
...
@@ -46,6 +53,11 @@ runtime/HACKING.md
...
@@ -46,6 +53,11 @@ runtime/HACKING.md
calls convI2I all the time (no caching) which is not negliable
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 ?)
- x/net/trace to trace requests and connection logging (and packets ?)
...
...
go/todo.dot
View file @
91adca2d
...
@@ -38,7 +38,7 @@ digraph {
...
@@ -38,7 +38,7 @@ digraph {
//Cpy_r_Sgo -> Mpy_vs_Sgo;
//Cpy_r_Sgo -> Mpy_vs_Sgo;
Cgo_r_Sgo
->
Cgo
;
Cgo_r_Sgo
->
Cgo
;
Cgo_r_Sgo
->
Sgo
;
Cgo_r_Sgo
->
Sgo
;
Cgo_r_Spy
->
Cgo
;
Cgo_r_Spy
->
Cgo
;
//Cgo_r_Spy -> Protog_fix;
//Cgo_r_Spy -> Protog_fix;
...
...
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