1
0
mirror of https://github.com/fumiama/orbyte.git synced 2026-06-20 02:30:26 +08:00

fix: ensure atomic alignment

This commit is contained in:
源文雨
2025-04-03 16:41:30 +09:00
parent c427a15a7e
commit f9204e9924
3 changed files with 7 additions and 5 deletions

View File

@@ -9,10 +9,10 @@ import (
// Pool lightweight general pool.
type Pool[T any] struct {
pooler Pooler[T]
pool sync.Pool
countin int32
countout int32
pooler Pooler[T]
pool sync.Pool
noputbak bool
manudstr bool
}