Skip to content

Commit 378bcd5

Browse files
committedSep 21, 2023
8316595: Alpine build fails after JDK-8314021
Reviewed-by: dholmes, yyang
1 parent b3d75fe commit 378bcd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/os/linux/os_linux.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4373,7 +4373,7 @@ jlong os::Linux::fast_thread_cpu_time(clockid_t clockid) {
43734373
// the number of bytes written to out_fd is returned if transfer was successful
43744374
// otherwise, returns -1 that implies an error
43754375
jlong os::Linux::sendfile(int out_fd, int in_fd, jlong* offset, jlong count) {
4376-
return sendfile64(out_fd, in_fd, (off64_t*)offset, (size_t)count);
4376+
return ::sendfile64(out_fd, in_fd, (off64_t*)offset, (size_t)count);
43774377
}
43784378

43794379
// Determine if the vmid is the parent pid for a child in a PID namespace.

0 commit comments

Comments
 (0)
Please sign in to comment.