✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/include/sys//rseq.h
/* Restartable Sequences exported symbols.  Linux header.
   Copyright (C) 2021 Free Software Foundation, Inc.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#ifndef _SYS_RSEQ_H
#define _SYS_RSEQ_H	1

/* Architecture-specific rseq signature.  */
#include <bits/rseq.h>

#include <stddef.h>
#include <stdint.h>
#include <sys/cdefs.h>

#ifdef __has_include
# if __has_include ("linux/rseq.h")
#  define __GLIBC_HAVE_KERNEL_RSEQ
# endif
#else
# include <linux/version.h>
# if LINUX_VERSION_CODE >= KERNEL_VERSION (4, 18, 0)
#  define __GLIBC_HAVE_KERNEL_RSEQ
# endif
#endif

#ifdef __GLIBC_HAVE_KERNEL_RSEQ
/* We use the structures declarations from the kernel headers.  */
# include <linux/rseq.h>
#else /* __GLIBC_HAVE_KERNEL_RSEQ */
/* We use a copy of the include/uapi/linux/rseq.h kernel header.  */

enum rseq_cpu_id_state
  {
    RSEQ_CPU_ID_UNINITIALIZED = -1,
    RSEQ_CPU_ID_REGISTRATION_FAILED = -2,
  };

enum rseq_flags
  {
    RSEQ_FLAG_UNREGISTER = (1 << 0),
  };

enum rseq_cs_flags_bit
  {
    RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT = 0,
    RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT = 1,
    RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT = 2,
  };

enum rseq_cs_flags
  {
    RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT =
      (1U << RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT),
    RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL =
      (1U << RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT),
    RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE =
      (1U << RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT),
  };

/* struct rseq_cs is aligned on 32 bytes to ensure it is always
   contained within a single cache-line.  It is usually declared as
   link-time constant data.  */
struct rseq_cs
  {
    /* Version of this structure.  */
    uint32_t version;
    /* enum rseq_cs_flags.  */
    uint32_t flags;
    uint64_t start_ip;
    /* Offset from start_ip.  */
    uint64_t post_commit_offset;
    uint64_t abort_ip;
  } __attribute__ ((__aligned__ (32)));

/* struct rseq is aligned on 32 bytes to ensure it is always
   contained within a single cache-line.

   A single struct rseq per thread is allowed.  */
struct rseq
  {
    /* Restartable sequences cpu_id_start field.  Updated by the
       kernel.  Read by user-space with single-copy atomicity
       semantics.  This field should only be read by the thread which
       registered this data structure.  Aligned on 32-bit.  Always
       contains a value in the range of possible CPUs, although the
       value may not be the actual current CPU (e.g. if rseq is not
       initialized).  This CPU number value should always be compared
       against the value of the cpu_id field before performing a rseq
       commit or returning a value read from a data structure indexed
       using the cpu_id_start value.  */
    uint32_t cpu_id_start;
    /* Restartable sequences cpu_id field.  Updated by the kernel.
       Read by user-space with single-copy atomicity semantics.  This
       field should only be read by the thread which registered this
       data structure.  Aligned on 32-bit.  Values
       RSEQ_CPU_ID_UNINITIALIZED and RSEQ_CPU_ID_REGISTRATION_FAILED
       have a special semantic: the former means "rseq uninitialized",
       and latter means "rseq initialization failed".  This value is
       meant to be read within rseq critical sections and compared
       with the cpu_id_start value previously read, before performing
       the commit instruction, or read and compared with the
       cpu_id_start value before returning a value loaded from a data
       structure indexed using the cpu_id_start value.  */
    uint32_t cpu_id;
    /* Restartable sequences rseq_cs field.

       Contains NULL when no critical section is active for the current
       thread, or holds a pointer to the currently active struct rseq_cs.

       Updated by user-space, which sets the address of the currently
       active rseq_cs at the beginning of assembly instruction sequence
       block, and set to NULL by the kernel when it restarts an assembly
       instruction sequence block, as well as when the kernel detects that
       it is preempting or delivering a signal outside of the range
       targeted by the rseq_cs.  Also needs to be set to NULL by user-space
       before reclaiming memory that contains the targeted struct rseq_cs.

       Read and set by the kernel. Set by user-space with single-copy
       atomicity semantics. This field should only be updated by the
       thread which registered this data structure. Aligned on 64-bit.

       32-bit architectures should update the low order bits of the
       rseq_cs field, leaving the high order bits initialized to 0.  */
    uint64_t rseq_cs;
    /* Restartable sequences flags field.

       This field should only be updated by the thread which
       registered this data structure.  Read by the kernel.
       Mainly used for single-stepping through rseq critical sections
       with debuggers.

       - RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT
           Inhibit instruction sequence block restart on preemption
           for this thread.
       - RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL
           Inhibit instruction sequence block restart on signal
           delivery for this thread.
       - RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE
           Inhibit instruction sequence block restart on migration for
           this thread.  */
    uint32_t flags;
  } __attribute__ ((__aligned__ (32)));

#endif /* __GLIBC_HAVE_KERNEL_RSEQ */

/* Offset from the thread pointer to the rseq area.  */
extern const ptrdiff_t __rseq_offset;

/* Size of the registered rseq area.  0 if the registration was
   unsuccessful.  */
extern const unsigned int __rseq_size;

/* Flags used during rseq registration.  */
extern const unsigned int __rseq_flags;

#endif /* sys/rseq.h */

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
12 Sep 2026 4.57 AM
root / root
0755
platform
--
5 Aug 2026 4.57 AM
root / root
0755
acct.h
3.225 KB
3 Aug 2026 10.11 AM
root / root
0644
auxv.h
1.23 KB
3 Aug 2026 10.11 AM
root / root
0644
bitypes.h
0.084 KB
3 Aug 2026 10.12 AM
root / root
0644
capability.h
7.063 KB
20 May 2026 10.00 AM
root / root
0644
cdefs.h
25.642 KB
3 Aug 2026 10.11 AM
root / root
0644
debugreg.h
3.492 KB
3 Aug 2026 10.11 AM
root / root
0644
dir.h
0.9 KB
3 Aug 2026 10.11 AM
root / root
0644
elf.h
1 KB
3 Aug 2026 10.11 AM
root / root
0644
epoll.h
4.957 KB
3 Aug 2026 10.11 AM
root / root
0644
errno.h
0.019 KB
3 Aug 2026 10.11 AM
root / root
0644
eventfd.h
1.367 KB
3 Aug 2026 10.11 AM
root / root
0644
fanotify.h
1.262 KB
3 Aug 2026 10.11 AM
root / root
0644
fcntl.h
0.019 KB
3 Aug 2026 10.11 AM
root / root
0644
file.h
1.636 KB
3 Aug 2026 10.11 AM
root / root
0644
fsuid.h
1.16 KB
3 Aug 2026 10.11 AM
root / root
0644
gmon.h
6.084 KB
3 Aug 2026 10.11 AM
root / root
0644
gmon_out.h
2.574 KB
3 Aug 2026 10.11 AM
root / root
0644
inotify.h
3.81 KB
3 Aug 2026 10.11 AM
root / root
0644
io.h
4.967 KB
3 Aug 2026 10.11 AM
root / root
0644
ioctl.h
1.979 KB
3 Aug 2026 10.11 AM
root / root
0644
ipc.h
1.428 KB
3 Aug 2026 10.11 AM
root / root
0644
kd.h
1.086 KB
3 Aug 2026 10.11 AM
root / root
0644
klog.h
1.176 KB
3 Aug 2026 10.11 AM
root / root
0644
mman.h
5.422 KB
3 Aug 2026 10.11 AM
root / root
0644
mount.h
5.572 KB
3 Aug 2026 10.11 AM
root / root
0644
msg.h
2.562 KB
3 Aug 2026 10.11 AM
root / root
0644
mtio.h
10.901 KB
3 Aug 2026 10.11 AM
root / root
0644
param.h
3.075 KB
3 Aug 2026 10.11 AM
root / root
0644
pci.h
0.901 KB
3 Aug 2026 10.11 AM
root / root
0644
perm.h
1.101 KB
3 Aug 2026 10.11 AM
root / root
0644
personality.h
2.659 KB
3 Aug 2026 10.11 AM
root / root
0644
poll.h
2.954 KB
3 Aug 2026 10.11 AM
root / root
0644
prctl.h
1.753 KB
3 Aug 2026 10.11 AM
root / root
0644
procfs.h
4.236 KB
3 Aug 2026 10.12 AM
root / root
0644
profil.h
1.913 KB
3 Aug 2026 10.11 AM
root / root
0644
psx_syscall.h
2.767 KB
20 May 2026 10.00 AM
root / root
0644
ptrace.h
5.982 KB
3 Aug 2026 10.11 AM
root / root
0644
queue.h
19.081 KB
3 Aug 2026 10.11 AM
root / root
0644
quota.h
5.052 KB
3 Aug 2026 10.11 AM
root / root
0644
random.h
1.437 KB
3 Aug 2026 10.11 AM
root / root
0644
raw.h
1.154 KB
3 Aug 2026 10.11 AM
root / root
0644
reboot.h
1.595 KB
3 Aug 2026 10.11 AM
root / root
0644
reg.h
1.784 KB
3 Aug 2026 10.11 AM
root / root
0644
resource.h
3.939 KB
3 Aug 2026 10.11 AM
root / root
0644
rseq.h
6.255 KB
3 Aug 2026 10.11 AM
root / root
0644
sdt-config.h
0.239 KB
4 Apr 2026 9.42 PM
root / root
0644
sdt.h
21.808 KB
4 Apr 2026 9.42 PM
root / root
0644
select.h
4.921 KB
3 Aug 2026 10.11 AM
root / root
0644
sem.h
2.598 KB
3 Aug 2026 10.11 AM
root / root
0644
sendfile.h
1.764 KB
3 Aug 2026 10.11 AM
root / root
0644
shm.h
2.081 KB
3 Aug 2026 10.11 AM
root / root
0644
signal.h
0.02 KB
3 Aug 2026 10.11 AM
root / root
0644
signalfd.h
1.674 KB
3 Aug 2026 10.11 AM
root / root
0644
single_threaded.h
1.154 KB
3 Aug 2026 10.11 AM
root / root
0644
socket.h
12.092 KB
3 Aug 2026 10.11 AM
root / root
0644
socketvar.h
0.138 KB
3 Aug 2026 10.11 AM
root / root
0644
soundcard.h
0.028 KB
3 Aug 2026 10.11 AM
root / root
0644
stat.h
13.413 KB
3 Aug 2026 10.11 AM
root / root
0644
statfs.h
2.045 KB
3 Aug 2026 10.11 AM
root / root
0644
statvfs.h
2.755 KB
3 Aug 2026 10.11 AM
root / root
0644
swap.h
1.556 KB
3 Aug 2026 10.11 AM
root / root
0644
syscall.h
1.227 KB
3 Aug 2026 10.11 AM
root / root
0644
sysinfo.h
1.482 KB
3 Aug 2026 10.11 AM
root / root
0644
syslog.h
7.604 KB
3 Aug 2026 10.11 AM
root / root
0644
sysmacros.h
2.054 KB
3 Aug 2026 10.11 AM
root / root
0644
termios.h
0.072 KB
3 Aug 2026 10.11 AM
root / root
0644
time.h
8.925 KB
3 Aug 2026 10.11 AM
root / root
0644
timeb.h
1.128 KB
3 Aug 2026 10.11 AM
root / root
0644
timerfd.h
2.522 KB
3 Aug 2026 10.11 AM
root / root
0644
times.h
1.56 KB
3 Aug 2026 10.11 AM
root / root
0644
timex.h
2.772 KB
3 Aug 2026 10.11 AM
root / root
0644
ttychars.h
2.44 KB
3 Aug 2026 10.11 AM
root / root
0644
ttydefaults.h
3.484 KB
3 Aug 2026 10.11 AM
root / root
0644
types.h
5.579 KB
3 Aug 2026 10.11 AM
root / root
0644
ucontext.h
5.705 KB
3 Aug 2026 10.11 AM
root / root
0644
uio.h
6.637 KB
3 Aug 2026 10.11 AM
root / root
0644
un.h
1.419 KB
3 Aug 2026 10.11 AM
root / root
0644
unistd.h
0.02 KB
3 Aug 2026 10.11 AM
root / root
0644
user.h
5.086 KB
3 Aug 2026 10.11 AM
root / root
0644
utsname.h
2.423 KB
3 Aug 2026 10.11 AM
root / root
0644
vfs.h
0.157 KB
3 Aug 2026 10.11 AM
root / root
0644
vlimit.h
1.836 KB
3 Aug 2026 10.11 AM
root / root
0644
vm86.h
1.171 KB
3 Aug 2026 10.11 AM
root / root
0644
vt.h
0.021 KB
3 Aug 2026 10.11 AM
root / root
0644
wait.h
6.087 KB
3 Aug 2026 10.11 AM
root / root
0644
xattr.h
4.175 KB
3 Aug 2026 10.11 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF