This commit is contained in:
baerwang 2025-06-20 15:30:40 -04:00 committed by GitHub
commit e08d4dcf9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -523,9 +523,9 @@ const (
// Values for m.freeWait.
const (
freeMStack = 0 // M done, free stack and reference.
freeMRef = 1 // M done, free reference.
freeMWait = 2 // M still in use.
freeMStack = iota // M done, free stack and reference.
freeMRef // M done, free reference.
freeMWait // M still in use.
)
type m struct {