mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8316595: Alpine build fails after JDK-8314021
Reviewed-by: dholmes, yyang
This commit is contained in:
parent
b3d75fe12e
commit
378bcd5985
1 changed files with 1 additions and 1 deletions
|
@ -4373,7 +4373,7 @@ jlong os::Linux::fast_thread_cpu_time(clockid_t clockid) {
|
|||
// the number of bytes written to out_fd is returned if transfer was successful
|
||||
// otherwise, returns -1 that implies an error
|
||||
jlong os::Linux::sendfile(int out_fd, int in_fd, jlong* offset, jlong count) {
|
||||
return sendfile64(out_fd, in_fd, (off64_t*)offset, (size_t)count);
|
||||
return ::sendfile64(out_fd, in_fd, (off64_t*)offset, (size_t)count);
|
||||
}
|
||||
|
||||
// Determine if the vmid is the parent pid for a child in a PID namespace.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue