Files

14 lines
269 B
Go
Raw Permalink Normal View History

2025-04-08 16:50:47 +08:00
//go:build !((linux || darwin) && (amd64 || arm64))
package sync
const (
PthreadOnceSize = 4
PthreadMutexSize = 40
PthreadMutexAttrSize = 4
PthreadCondSize = 48
PthreadCondAttrSize = 4
PthreadRWLockSize = 56
PthreadRWLockAttrSize = 8
)