Remove disallowed linkname usages

This commit is contained in:
世界 2024-05-18 13:20:31 +08:00
parent 284cb5ce98
commit e0ee7f49e2
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -25,5 +25,6 @@ func SetKeepAlivePeriod(idle time.Duration, interval time.Duration) Func {
}
}
//go:linkname roundDurationUp net.roundDurationUp
func roundDurationUp(d time.Duration, to time.Duration) time.Duration
func roundDurationUp(d time.Duration, to time.Duration) time.Duration {
return (d + to - 1) / to
}