Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-6.8.0-136 /
include /
vdso /
Delete
Unzip
Name
Size
Permission
Date
Action
bits.h
209
B
-rw-r--r--
2024-03-10 20:38
clocksource.h
479
B
-rw-r--r--
2024-03-10 20:38
const.h
196
B
-rw-r--r--
2024-03-10 20:38
datapage.h
4.12
KB
-rw-r--r--
2024-03-10 20:38
gettime.h
784
B
-rw-r--r--
2026-07-01 19:48
helpers.h
1.27
KB
-rw-r--r--
2024-03-10 20:38
jiffies.h
298
B
-rw-r--r--
2024-03-10 20:38
ktime.h
454
B
-rw-r--r--
2024-03-10 20:38
limits.h
564
B
-rw-r--r--
2024-03-10 20:38
math64.h
468
B
-rw-r--r--
2024-03-10 20:38
processor.h
251
B
-rw-r--r--
2024-03-10 20:38
time.h
190
B
-rw-r--r--
2024-03-10 20:38
time32.h
274
B
-rw-r--r--
2024-03-10 20:38
time64.h
426
B
-rw-r--r--
2024-03-10 20:38
vsyscall.h
288
B
-rw-r--r--
2024-03-10 20:38
Save
Rename
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _VDSO_GETTIME_H #define _VDSO_GETTIME_H #include <linux/types.h> struct __kernel_timespec; struct __kernel_old_timeval; struct timezone; #if !defined(CONFIG_64BIT) || defined(BUILD_VDSO32_64) struct old_timespec32; int __vdso_clock_getres(clockid_t clock, struct old_timespec32 *res); int __vdso_clock_gettime(clockid_t clock, struct old_timespec32 *ts); #else int __vdso_clock_getres(clockid_t clock, struct __kernel_timespec *res); int __vdso_clock_gettime(clockid_t clock, struct __kernel_timespec *ts); #endif __kernel_old_time_t __vdso_time(__kernel_old_time_t *t); int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz); int __vdso_clock_gettime64(clockid_t clock, struct __kernel_timespec *ts); #endif