!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/usr/src/linux-headers-4.15.0-213/include/linux/   drwxr-xr-x
Free 9.9 GB of 61.93 GB (15.98%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     timekeeping32.h (3.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef _LINUX_TIMEKEEPING32_H
#define _LINUX_TIMEKEEPING32_H
/*
 * These interfaces are all based on the old timespec type
 * and should get replaced with the timespec64 based versions
 * over time so we can remove the file here.
 */

static inline void do_gettimeofday(struct timeval *tv)
{
    struct timespec64 now;

    ktime_get_real_ts64(&now);
    tv->tv_sec = now.tv_sec;
    tv->tv_usec = now.tv_nsec/1000;
}

static inline unsigned long get_seconds(void)
{
    return ktime_get_real_seconds();
}

/* does not take xtime_lock */
struct timespec __current_kernel_time(void);

static inline struct timespec current_kernel_time(void)
{
    struct timespec64 now = current_kernel_time64();

    return timespec64_to_timespec(now);
}

#if BITS_PER_LONG == 64
/**
 * Deprecated. Use do_settimeofday64().
 */
static inline int do_settimeofday(const struct timespec *ts)
{
    return do_settimeofday64(ts);
}

static inline int __getnstimeofday(struct timespec *ts)
{
    return __getnstimeofday64(ts);
}

static inline void getnstimeofday(struct timespec *ts)
{
    getnstimeofday64(ts);
}

static inline void ktime_get_ts(struct timespec *ts)
{
    ktime_get_ts64(ts);
}

static inline void ktime_get_real_ts(struct timespec *ts)
{
    getnstimeofday64(ts);
}

static inline void getrawmonotonic(struct timespec *ts)
{
    getrawmonotonic64(ts);
}

static inline struct timespec get_monotonic_coarse(void)
{
    return get_monotonic_coarse64();
}

static inline void getboottime(struct timespec *ts)
{
    return getboottime64(ts);
}
#else
/**
 * Deprecated. Use do_settimeofday64().
 */
static inline int do_settimeofday(const struct timespec *ts)
{
    struct timespec64 ts64;

    ts64 = timespec_to_timespec64(*ts);
    return do_settimeofday64(&ts64);
}

static inline int __getnstimeofday(struct timespec *ts)
{
    struct timespec64 ts64;
    int ret = __getnstimeofday64(&ts64);

    *ts = timespec64_to_timespec(ts64);
    return ret;
}

static inline void getnstimeofday(struct timespec *ts)
{
    struct timespec64 ts64;

    getnstimeofday64(&ts64);
    *ts = timespec64_to_timespec(ts64);
}

static inline void ktime_get_ts(struct timespec *ts)
{
    struct timespec64 ts64;

    ktime_get_ts64(&ts64);
    *ts = timespec64_to_timespec(ts64);
}

static inline void ktime_get_real_ts(struct timespec *ts)
{
    struct timespec64 ts64;

    getnstimeofday64(&ts64);
    *ts = timespec64_to_timespec(ts64);
}

static inline void getrawmonotonic(struct timespec *ts)
{
    struct timespec64 ts64;

    getrawmonotonic64(&ts64);
    *ts = timespec64_to_timespec(ts64);
}

static inline struct timespec get_monotonic_coarse(void)
{
    return timespec64_to_timespec(get_monotonic_coarse64());
}

static inline void getboottime(struct timespec *ts)
{
    struct timespec64 ts64;

    getboottime64(&ts64);
    *ts = timespec64_to_timespec(ts64);
}
#endif

/*
 * Timespec interfaces utilizing the ktime based ones
 */
static inline void get_monotonic_boottime(struct timespec *ts)
{
    *ts = ktime_to_timespec(ktime_get_boottime());
}

static inline void timekeeping_clocktai(struct timespec *ts)
{
    *ts = ktime_to_timespec(ktime_get_clocktai());
}

/*
 * Persistent clock related interfaces
 */
extern void read_persistent_clock(struct timespec *ts);
extern int update_persistent_clock(struct timespec now);

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.5371 ]--