-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FreeBSD] Fix FreeBSD build/support #1075
base: main
Are you sure you want to change the base?
Conversation
michael-yuji
commented
Dec 9, 2024
- Use "/usr/share/zoneinfo" like other platforms
- Use platform specific types and values
- Implement extattr ops for FreeBSD
- Use copy_file_range(2) for file cloning
- all supported FreeBSD (13+) supports it for regular file, and allows for file system level offloading (e.g. ZFS block-cloning, NFS server side copying)
- Use "/usr/share/zoneinfo" - Use platform specific types and values - Implement extattr ops for FreeBSD - Use copy_file_range(2) for file cloning
@@ -142,7 +142,11 @@ final class _ProcessInfo: Sendable { | |||
let time: UInt64 = ullTime | |||
#else | |||
var ts: timespec = timespec() | |||
#if os(Linux) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This changes behaviour on Android I believe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed to only use CLOCK_MONOTONTIC for FreeBSD and OpenBSD.
@swift-ci please test |
@swift-ci please test |
@swift-ci please test |
@swift-ci please test |