Remove CPU pinning flags that measured slower than the scheduler

This commit is contained in:
flamingcow
2026-07-25 19:24:10 -07:00
parent 32c49ccc4b
commit abb8b81919
4 changed files with 2 additions and 58 deletions
-3
View File
@@ -21,7 +21,6 @@ type rxStats struct {
type rxWorker struct {
fd int
batch int
cpu int
spec *frameSpec
stats *rxStats
streams []lossWindow
@@ -30,8 +29,6 @@ type rxWorker struct {
}
func (w *rxWorker) run(done *atomic.Bool) {
pinTo(w.cpu)
bufs := make([][]byte, w.batch)
for i := range bufs {
bufs[i] = make([]byte, maxFrame)