Skip to content

Commit b20c5c7

Browse files
committedOct 14, 2024
8341967: Unify os::current_file_offset and os::seek_to_file_offset across posix platforms
Reviewed-by: jsjolen, mdoerr
1 parent dcac4b0 commit b20c5c7

File tree

4 files changed

+10
-30
lines changed

4 files changed

+10
-30
lines changed
 

‎src/hotspot/os/aix/os_aix.cpp

-10
Original file line numberDiff line numberDiff line change
@@ -2483,16 +2483,6 @@ int os::open(const char *path, int oflag, int mode) {
24832483
return fd;
24842484
}
24852485

2486-
// return current position of file pointer
2487-
jlong os::current_file_offset(int fd) {
2488-
return (jlong)::lseek(fd, (off_t)0, SEEK_CUR);
2489-
}
2490-
2491-
// move file pointer to the specified offset
2492-
jlong os::seek_to_file_offset(int fd, jlong offset) {
2493-
return (jlong)::lseek(fd, (off_t)offset, SEEK_SET);
2494-
}
2495-
24962486
// current_thread_cpu_time(bool) and thread_cpu_time(Thread*, bool)
24972487
// are used by JVM M&M and JVMTI to get user+sys or user CPU time
24982488
// of a thread.

‎src/hotspot/os/bsd/os_bsd.cpp

-10
Original file line numberDiff line numberDiff line change
@@ -2400,16 +2400,6 @@ int os::open(const char *path, int oflag, int mode) {
24002400
return fd;
24012401
}
24022402

2403-
// return current position of file pointer
2404-
jlong os::current_file_offset(int fd) {
2405-
return (jlong)::lseek(fd, (off_t)0, SEEK_CUR);
2406-
}
2407-
2408-
// move file pointer to the specified offset
2409-
jlong os::seek_to_file_offset(int fd, jlong offset) {
2410-
return (jlong)::lseek(fd, (off_t)offset, SEEK_SET);
2411-
}
2412-
24132403
// current_thread_cpu_time(bool) and thread_cpu_time(Thread*, bool)
24142404
// are used by JVM M&M and JVMTI to get user+sys or user CPU time
24152405
// of a thread.

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

-10
Original file line numberDiff line numberDiff line change
@@ -5053,16 +5053,6 @@ int os::open(const char *path, int oflag, int mode) {
50535053
return fd;
50545054
}
50555055

5056-
// return current position of file pointer
5057-
jlong os::current_file_offset(int fd) {
5058-
return (jlong)::lseek(fd, (off_t)0, SEEK_CUR);
5059-
}
5060-
5061-
// move file pointer to the specified offset
5062-
jlong os::seek_to_file_offset(int fd, jlong offset) {
5063-
return (jlong)::lseek(fd, (off_t)offset, SEEK_SET);
5064-
}
5065-
50665056
static jlong slow_thread_cpu_time(Thread *thread, bool user_sys_cpu_time);
50675057

50685058
static jlong fast_cpu_time(Thread *thread) {

‎src/hotspot/os/posix/os_posix.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,16 @@ int os::create_file_for_heap(const char* dir) {
348348
return fd;
349349
}
350350

351+
// return current position of file pointer
352+
jlong os::current_file_offset(int fd) {
353+
return (jlong)::lseek(fd, (off_t)0, SEEK_CUR);
354+
}
355+
356+
// move file pointer to the specified offset
357+
jlong os::seek_to_file_offset(int fd, jlong offset) {
358+
return (jlong)::lseek(fd, (off_t)offset, SEEK_SET);
359+
}
360+
351361
// Is a (classpath) directory empty?
352362
bool os::dir_is_empty(const char* path) {
353363
DIR *dir = nullptr;

0 commit comments

Comments
 (0)
Please sign in to comment.