Files
llgo/runtime/internal/clite/pthread/sync/sync_other.go
2025-04-11 16:28:44 +08:00

14 lines
269 B
Go

//go:build !((linux || darwin) && (amd64 || arm64))
package sync
const (
PthreadOnceSize = 4
PthreadMutexSize = 40
PthreadMutexAttrSize = 4
PthreadCondSize = 48
PthreadCondAttrSize = 4
PthreadRWLockSize = 56
PthreadRWLockAttrSize = 8
)