PHP 8.1.33
Preview: signal.h Size: 11.96 KB
/usr/include/signal.h

/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   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
   <http://www.gnu.org/licenses/>.  */

/*
 *	ISO C99 Standard: 7.14 Signal handling <signal.h>
 */

#ifndef	_SIGNAL_H
#define _SIGNAL_H

#include <features.h>

__BEGIN_DECLS

#include <bits/types.h>
#include <bits/signum.h>

#include <bits/types/sig_atomic_t.h>

#if defined __USE_POSIX
#include <bits/types/sigset_t.h>
#endif

#if defined __USE_XOPEN || defined __USE_XOPEN2K
# ifndef __pid_t_defined
typedef __pid_t pid_t;
#  define __pid_t_defined
#endif
#ifdef __USE_XOPEN
# endif
# ifndef __uid_t_defined
typedef __uid_t uid_t;
#  define __uid_t_defined
# endif
#endif	/* Unix98 */

#ifdef __USE_POSIX199309
/* We need `struct timespec' later on.  */
# include <bits/types/struct_timespec.h>
#endif

#if defined __USE_POSIX199309 || defined __USE_XOPEN_EXTENDED
# include <bits/types/siginfo_t.h>
# include <bits/siginfo-consts.h>
#endif

#ifdef __USE_MISC
# include <bits/types/sigval_t.h>
#endif

#ifdef __USE_POSIX199309
# include <bits/types/sigevent_t.h>
# include <bits/sigevent-consts.h>
#endif


/* Type of a signal handler.  */
typedef void (*__sighandler_t) (int);

/* The X/Open definition of `signal' specifies the SVID semantic.  Use
   the additional function `sysv_signal' when X/Open compatibility is
   requested.  */
extern __sighandler_t __sysv_signal (int __sig, __sighandler_t __handler)
     __THROW;
#ifdef __USE_GNU
extern __sighandler_t sysv_signal (int __sig, __sighandler_t __handler)
     __THROW;
#endif

/* Set the handler for the signal SIG to HANDLER, returning the old
   handler, or SIG_ERR on error.
   By default `signal' has the BSD semantic.  */
#ifdef __USE_MISC
extern __sighandler_t signal (int __sig, __sighandler_t __handler)
     __THROW;
#else
/* Make sure the used `signal' implementation is the SVID version. */
# ifdef __REDIRECT_NTH
extern __sighandler_t __REDIRECT_NTH (signal,
				      (int __sig, __sighandler_t __handler),
				      __sysv_signal);
# else
#  define signal __sysv_signal
# endif
#endif

#if defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8
/* The X/Open definition of `signal' conflicts with the BSD version.
   So they defined another function `bsd_signal'.  */
extern __sighandler_t bsd_signal (int __sig, __sighandler_t __handler)
     __THROW;
#endif

/* Send signal SIG to process number PID.  If PID is zero,
   send SIG to all processes in the current process's process group.
   If PID is < -1, send SIG to all processes in process group - PID.  */
#ifdef __USE_POSIX
extern int kill (__pid_t __pid, int __sig) __THROW;
#endif /* Use POSIX.  */

#if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
/* Send SIG to all processes in process group PGRP.
   If PGRP is zero, send SIG to all processes in
   the current process's process group.  */
extern int killpg (__pid_t __pgrp, int __sig) __THROW;
#endif /* Use misc || X/Open Unix.  */

/* Raise signal SIG, i.e., send SIG to yourself.  */
extern int raise (int __sig) __THROW;

#ifdef __USE_MISC
/* SVID names for the same things.  */
extern __sighandler_t ssignal (int __sig, __sighandler_t __handler)
     __THROW;
extern int gsignal (int __sig) __THROW;
#endif /* Use misc.  */

#ifdef __USE_XOPEN2K8
/* Print a message describing the meaning of the given signal number.  */
extern void psignal (int __sig, const char *__s);

/* Print a message describing the meaning of the given signal information.  */
extern void psiginfo (const siginfo_t *__pinfo, const char *__s);
#endif /* POSIX 2008.  */



/* The `sigpause' function in X/Open defines the argument as the
   signal number.  This requires redirecting to another function
   because the default version in glibc uses an old BSD interface.

   This function is a cancellation point and therefore not marked with
   __THROW.  */

#ifdef __USE_XOPEN_EXTENDED
# ifdef __GNUC__
extern int sigpause (int __sig) __asm__ ("__xpg_sigpause");
# else
extern int __sigpause (int __sig_or_mask, int __is_sig);
/* Remove a signal from the signal mask and suspend the process.  */
#  define sigpause(sig) __sigpause ((sig), 1)
# endif
#endif


#ifdef __USE_MISC
/* None of the following functions should be used anymore.  They are here
   only for compatibility.  A single word (`int') is not guaranteed to be
   enough to hold a complete signal mask and therefore these functions
   simply do not work in many situations.  Use `sigprocmask' instead.  */

/* Compute mask for signal SIG.  */
# define sigmask(sig) ((int)(1u << ((sig) - 1)))

/* Block signals in MASK, returning the old mask.  */
extern int sigblock (int __mask) __THROW __attribute_deprecated__;

/* Set the mask of blocked signals to MASK, returning the old mask.  */
extern int sigsetmask (int __mask) __THROW __attribute_deprecated__;

/* Return currently selected signal mask.  */
extern int siggetmask (void) __THROW __attribute_deprecated__;
#endif /* Use misc.  */


#ifdef __USE_MISC
# define NSIG	_NSIG
#endif

#ifdef __USE_GNU
typedef __sighandler_t sighandler_t;
#endif

/* 4.4 BSD uses the name `sig_t' for this.  */
#ifdef __USE_MISC
typedef __sighandler_t sig_t;
#endif

#ifdef __USE_POSIX

/* Clear all signals from SET.  */
extern int sigemptyset (sigset_t *__set) __THROW __nonnull ((1));

/* Set all signals in SET.  */
extern int sigfillset (sigset_t *__set) __THROW __nonnull ((1));

/* Add SIGNO to SET.  */
extern int sigaddset (sigset_t *__set, int __signo) __THROW __nonnull ((1));

/* Remove SIGNO from SET.  */
extern int sigdelset (sigset_t *__set, int __signo) __THROW __nonnull ((1));

/* Return 1 if SIGNO is in SET, 0 if not.  */
extern int sigismember (const sigset_t *__set, int __signo)
     __THROW __nonnull ((1));

# ifdef __USE_GNU
/* Return non-empty value is SET is not empty.  */
extern int sigisemptyset (const sigset_t *__set) __THROW __nonnull ((1));

/* Build new signal set by combining the two inputs set using logical AND.  */
extern int sigandset (sigset_t *__set, const sigset_t *__left,
		      const sigset_t *__right) __THROW __nonnull ((1, 2, 3));

/* Build new signal set by combining the two inputs set using logical OR.  */
extern int sigorset (sigset_t *__set, const sigset_t *__left,
		     const sigset_t *__right) __THROW __nonnull ((1, 2, 3));
# endif /* GNU */

/* Get the system-specific definitions of `struct sigaction'
   and the `SA_*' and `SIG_*'. constants.  */
# include <bits/sigaction.h>

/* Get and/or change the set of blocked signals.  */
extern int sigprocmask (int __how, const sigset_t *__restrict __set,
			sigset_t *__restrict __oset) __THROW;

/* Change the set of blocked signals to SET,
   wait until a signal arrives, and restore the set of blocked signals.

   This function is a cancellation point and therefore not marked with
   __THROW.  */
extern int sigsuspend (const sigset_t *__set) __nonnull ((1));

/* Get and/or set the action for signal SIG.  */
extern int sigaction (int __sig, const struct sigaction *__restrict __act,
		      struct sigaction *__restrict __oact) __THROW;

/* Put in SET all signals that are blocked and waiting to be delivered.  */
extern int sigpending (sigset_t *__set) __THROW __nonnull ((1));


# ifdef __USE_POSIX199506
/* Select any of pending signals from SET or wait for any to arrive.

   This function is a cancellation point and therefore not marked with
   __THROW.  */
extern int sigwait (const sigset_t *__restrict __set, int *__restrict __sig)
     __nonnull ((1, 2));
# endif /* Use POSIX 1995.  */

# ifdef __USE_POSIX199309
/* Select any of pending signals from SET and place information in INFO.

   This function is a cancellation point and therefore not marked with
   __THROW.  */
extern int sigwaitinfo (const sigset_t *__restrict __set,
			siginfo_t *__restrict __info) __nonnull ((1));

/* Select any of pending signals from SET and place information in INFO.
   Wait the time specified by TIMEOUT if no signal is pending.

   This function is a cancellation point and therefore not marked with
   __THROW.  */
extern int sigtimedwait (const sigset_t *__restrict __set,
			 siginfo_t *__restrict __info,
			 const struct timespec *__restrict __timeout)
     __nonnull ((1));

/* Send signal SIG to the process PID.  Associate data in VAL with the
   signal.  */
extern int sigqueue (__pid_t __pid, int __sig, const union sigval __val)
     __THROW;
# endif	/* Use POSIX 199306.  */

#endif /* Use POSIX.  */

#ifdef __USE_MISC

/* Names of the signals.  This variable exists only for compatibility.
   Use `strsignal' instead (see <string.h>).  */
extern const char *const _sys_siglist[_NSIG];
extern const char *const sys_siglist[_NSIG];


/* Get machine-dependent `struct sigcontext' and signal subcodes.  */
# include <bits/sigcontext.h>

/* Restore the state saved in SCP.  */
extern int sigreturn (struct sigcontext *__scp) __THROW;

#endif /* Use misc.  */


#if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
# define __need_size_t
# include <stddef.h>

# include <bits/types/stack_t.h>
# if defined __USE_XOPEN || defined __USE_XOPEN2K8
/* This will define `ucontext_t' and `mcontext_t'.  */
#  include <sys/ucontext.h>
# endif
#endif /* Use POSIX.1-2008 or X/Open Unix.  */

#if defined __USE_XOPEN_EXTENDED || defined __USE_MISC
/* If INTERRUPT is nonzero, make signal SIG interrupt system calls
   (causing them to fail with EINTR); if INTERRUPT is zero, make system
   calls be restarted after signal SIG.  */
extern int siginterrupt (int __sig, int __interrupt) __THROW;

# include <bits/sigstack.h>
# include <bits/ss_flags.h>

/* Alternate signal handler stack interface.
   This interface should always be preferred over `sigstack'.  */
extern int sigaltstack (const stack_t *__restrict __ss,
			stack_t *__restrict __oss) __THROW;
#endif /* __USE_XOPEN_EXTENDED || __USE_MISC */

#if ((defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8)	\
     || defined __USE_MISC)
# include <bits/types/struct_sigstack.h>
#endif

#if ((defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K)	\
     || defined __USE_MISC)
/* Run signals handlers on the stack specified by SS (if not NULL).
   If OSS is not NULL, it is filled in with the old signal stack status.
   This interface is obsolete and on many platform not implemented.  */
extern int sigstack (struct sigstack *__ss, struct sigstack *__oss)
     __THROW __attribute_deprecated__;
#endif

#ifdef __USE_XOPEN_EXTENDED
/* Simplified interface for signal management.  */

/* Add SIG to the calling process' signal mask.  */
extern int sighold (int __sig) __THROW;

/* Remove SIG from the calling process' signal mask.  */
extern int sigrelse (int __sig) __THROW;

/* Set the disposition of SIG to SIG_IGN.  */
extern int sigignore (int __sig) __THROW;

/* Set the disposition of SIG.  */
extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW;
#endif

#if defined __USE_POSIX199506 || defined __USE_UNIX98
/* Some of the functions for handling signals in threaded programs must
   be defined here.  */
# include <bits/pthreadtypes.h>
# include <bits/sigthread.h>
#endif /* use Unix98 */

/* The following functions are used internally in the C library and in
   other code which need deep insights.  */

/* Return number of available real-time signal with highest priority.  */
extern int __libc_current_sigrtmin (void) __THROW;
/* Return number of available real-time signal with lowest priority.  */
extern int __libc_current_sigrtmax (void) __THROW;

#define SIGRTMIN        (__libc_current_sigrtmin ())
#define SIGRTMAX        (__libc_current_sigrtmax ())

__END_DECLS

#endif /* not signal.h */

Directory Contents

Dirs: 78 × Files: 219

Name Size Perms Modified Actions
apache2 DIR
- drwxr-xr-x 2025-08-21 08:30:30
Edit Download
arpa DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
asm DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
bind9 DIR
- drwxr-xr-x 2025-02-21 06:00:36
Edit Download
bits DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
bsock DIR
- drwxr-xr-x 2024-03-03 22:15:40
Edit Download
c++ DIR
- drwxr-xr-x 2025-08-26 09:44:51
Edit Download
criu DIR
- drwxr-xr-x 2024-03-06 00:08:55
Edit Download
curl DIR
- drwxr-xr-x 2025-10-10 08:33:22
Edit Download
drm DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
e2p DIR
- drwxr-xr-x 2025-10-10 08:32:46
Edit Download
et DIR
- drwxr-xr-x 2025-10-10 08:32:29
Edit Download
event2 DIR
- drwxr-xr-x 2024-11-08 03:21:49
Edit Download
ext2fs DIR
- drwxr-xr-x 2025-10-10 08:32:46
Edit Download
finclude DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
- drwxr-xr-x 2024-03-03 23:04:30
Edit Download
freetype2 DIR
- drwxr-xr-x 2025-04-01 17:00:46
Edit Download
fstrm DIR
- drwxr-xr-x 2024-03-03 23:04:41
Edit Download
gdb DIR
- drwxr-xr-x 2025-02-11 10:16:32
Edit Download
gdbm DIR
- drwxr-xr-x 2024-03-03 23:04:54
Edit Download
GL DIR
- drwxr-xr-x 2024-03-03 23:04:21
Edit Download
gnu DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
google DIR
- drwxr-xr-x 2024-03-03 23:04:23
Edit Download
gssapi DIR
- drwxr-xr-x 2025-06-03 20:01:07
Edit Download
gssrpc DIR
- drwxr-xr-x 2025-06-03 20:01:07
Edit Download
jemalloc DIR
- drwxr-xr-x 2025-08-04 08:32:24
Edit Download
json-c DIR
- drwxr-xr-x 2024-03-03 23:04:41
Edit Download
kadm5 DIR
- drwxr-xr-x 2025-06-03 20:01:07
Edit Download
krb5 DIR
- drwxr-xr-x 2025-06-03 20:01:07
Edit Download
libdb DIR
- drwxr-xr-x 2024-03-03 20:40:29
Edit Download
libexslt DIR
- drwxr-xr-x 2025-08-29 08:32:15
Edit Download
libltdl DIR
- drwxr-xr-x 2024-03-03 23:04:55
Edit Download
libpng16 DIR
- drwxr-xr-x 2024-03-03 23:04:19
Edit Download
libxml2 DIR
- drwxr-xr-x 2025-08-06 13:59:33
Edit Download
libxslt DIR
- drwxr-xr-x 2025-08-29 08:32:15
Edit Download
linux DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
lua-5.1 DIR
- drwxr-xr-x 2024-07-23 08:39:20
Edit Download
lzma DIR
- drwxr-xr-x 2024-03-03 22:40:07
Edit Download
misc DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
mtd DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
mysql DIR
- drwxr-xr-x 2025-09-17 08:15:01
Edit Download
ncurses DIR
- drwxr-xr-x 2024-03-03 23:04:48
Edit Download
ncursesw DIR
- drwxr-xr-x 2024-03-03 23:04:48
Edit Download
net DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netash DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netatalk DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netax25 DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
neteconet DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netinet DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netipx DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netiucv DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netpacket DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netrom DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
netrose DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
nfs DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
openssl DIR
- drwxr-xr-x 2024-10-11 08:33:07
Edit Download
perf DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
- drwxr-xr-x 2024-03-03 23:04:23
Edit Download
protocols DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
python2.7 DIR
- drwxr-xr-x 2024-06-15 08:34:38
Edit Download
- drwxr-xr-x 2025-08-29 08:32:23
Edit Download
python3.8 DIR
- drwxr-xr-x 2024-03-05 23:45:24
Edit Download
rdma DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
rpc DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
sasl DIR
- drwxr-xr-x 2024-03-03 20:40:18
Edit Download
scsi DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
security DIR
- drwxr-xr-x 2025-08-29 08:32:23
Edit Download
selinux DIR
- drwxr-xr-x 2025-03-13 08:40:54
Edit Download
sepol DIR
- drwxr-xr-x 2024-03-03 20:40:13
Edit Download
sound DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
sys DIR
- drwxr-xr-x 2025-08-07 02:00:33
Edit Download
uuid DIR
- drwxr-xr-x 2024-06-15 08:34:54
Edit Download
video DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
webp DIR
- drwxr-xr-x 2025-06-04 08:40:03
Edit Download
X11 DIR
- drwxr-xr-x 2024-09-26 08:31:53
Edit Download
xcb DIR
- drwxr-xr-x 2024-03-03 23:04:24
Edit Download
xen DIR
- drwxr-xr-x 2025-10-31 08:30:40
Edit Download
4.25 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
7.28 KB lrw-r--r-- 2025-08-05 14:01:26
Edit Download
1.98 KB lrw-r--r-- 2025-08-05 14:01:27
Edit Download
1.17 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
1.69 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
24.82 KB lrw-r--r-- 2025-08-05 14:01:26
Edit Download
5.91 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
4.45 KB lrw-r--r-- 2025-08-05 14:01:02
Edit Download
2.33 KB lrw-r--r-- 2019-11-18 17:16:51
Edit Download
1.37 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
6.10 KB lrw-r--r-- 2010-09-10 23:08:42
Edit Download
7.00 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
2.07 KB lrw-r--r-- 2020-03-21 04:24:04
Edit Download
2.21 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
844 B lrw-r--r-- 2025-10-15 18:25:52
Edit Download
8.90 KB lrw-r--r-- 2021-10-09 04:04:04
Edit Download
10.71 KB lrw-r--r-- 2025-08-05 14:01:02
Edit Download
97.29 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
6.62 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
27.20 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
19.22 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
8.40 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
48.55 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
7.13 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
120.22 KB lr--r--r-- 2021-09-21 16:29:14
Edit Download
1.38 KB lrw-r--r-- 2022-10-08 13:22:08
Edit Download
5.84 KB lr--r--r-- 2021-09-21 16:29:14
Edit Download
12.19 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
7.07 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
170.73 KB lrw-r--r-- 2025-08-05 14:01:29
Edit Download
3.11 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
4.81 KB lrw-r--r-- 2017-08-30 11:05:54
Edit Download
2.80 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
2.16 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
1.64 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
1.99 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
2.82 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
9.47 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
1.97 KB lrw-r--r-- 2019-10-12 00:29:31
Edit Download
2.68 KB lrw-r--r-- 2019-10-12 00:29:31
Edit Download
1.99 KB lrw-r--r-- 2019-10-12 00:29:31
Edit Download
1.97 KB lrw-r--r-- 2019-10-12 00:29:31
Edit Download
1.74 KB lrw-r--r-- 2019-10-12 00:29:31
Edit Download
1.49 KB lrw-r--r-- 2025-08-05 14:01:26
Edit Download
42.66 KB lrw-r--r-- 2025-04-15 19:58:56
Edit Download
3.43 KB lrw-r--r-- 2025-04-15 19:58:56
Edit Download
5.40 KB lrw-r--r-- 2025-04-15 19:58:56
Edit Download
10.70 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
15.69 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
5.72 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
6.73 KB lrw-r--r-- 2019-10-12 12:33:17
Edit Download
3.16 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
2.24 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
18.17 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
3.50 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
3.04 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
12.71 KB lrw-r--r-- 2019-03-11 20:58:34
Edit Download
8.18 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
5.13 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
4.31 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
68.71 KB lrw-r--r-- 2022-06-28 11:54:07
Edit Download
56.42 KB lrw-r--r-- 2017-08-30 11:05:54
Edit Download
10.10 KB lrw-r--r-- 2022-10-08 13:22:07
Edit Download
2.83 KB lrw-r--r-- 2017-08-30 11:05:54
Edit Download
553 B lrw-r--r-- 2017-08-30 11:05:54
Edit Download
551 B lrw-r--r-- 2017-08-30 11:05:54
Edit Download
519 B lrw-r--r-- 2017-08-30 11:05:54
Edit Download
515 B lrw-r--r-- 2017-08-30 11:05:54
Edit Download
546 B lrw-r--r-- 2017-08-30 11:05:54
Edit Download
497 B lrw-r--r-- 2017-08-30 11:05:54
Edit Download
50.94 KB lrw-r--r-- 2017-08-30 11:05:54
Edit Download
478 B lrw-r--r-- 2017-08-30 11:05:54
Edit Download
1.47 KB lrw-r--r-- 2017-08-30 11:05:54
Edit Download
3.05 KB lrw-r--r-- 2017-08-30 11:05:54
Edit Download
1.43 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
15.17 KB lrw-r--r-- 2019-11-18 17:17:03
Edit Download
6.46 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
2.29 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
2.84 KB lrw-r--r-- 2022-04-18 16:38:33
Edit Download
66.29 KB lrw-r--r-- 2019-10-12 12:20:46
Edit Download
66.29 KB lrw-r--r-- 2019-10-12 12:20:46
Edit Download
6.53 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
4.42 KB lrw-r--r-- 2025-08-05 14:01:25
Edit Download
181 B lrw-r--r-- 2025-06-03 02:06:27
Edit Download
1.81 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
2.41 KB lrw-r--r-- 2019-10-13 16:55:34
Edit Download
20 B lrw-r--r-- 2019-10-13 16:55:34
Edit Download
3.48 KB lrw-r--r-- 2019-10-13 16:55:34
Edit Download
4.79 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
2.77 KB lrw-r--r-- 2025-08-05 14:01:27
Edit Download
11.61 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
2.17 KB lrw-r--r-- 2025-05-14 12:43:01
Edit Download
246 B lrw-r--r-- 2025-05-14 12:43:01
Edit Download
14.73 KB lrw-r--r-- 2025-05-14 12:43:01
Edit Download
14.70 KB lrw-r--r-- 2025-05-14 12:43:01
Edit Download
15.22 KB lrw-r--r-- 2025-05-14 12:43:01
Edit Download
48.71 KB lrw-r--r-- 2025-05-14 12:43:01
Edit Download
67.66 KB lrw-r--r-- 2025-06-03 02:06:27
Edit Download
7.52 KB lrw-r--r-- 2021-10-08 13:50:54
Edit Download
8.72 KB lrw-r--r-- 2025-06-03 02:06:27
Edit Download
402 B lrw-r--r-- 2025-06-03 02:06:27
Edit Download
17.43 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
126 B lrw-r--r-- 2025-08-05 14:01:28
Edit Download
14.95 KB lrw-r--r-- 2025-03-11 09:44:02
Edit Download
1.43 KB lrw-r--r-- 2025-03-11 09:44:02
Edit Download
63.57 KB lrw-r--r-- 2025-03-11 09:44:02
Edit Download
9.24 KB lrw-r--r-- 2025-03-11 09:44:02
Edit Download
1.77 KB lrw-r--r-- 2025-03-11 09:44:03
Edit Download
9.23 KB lrw-r--r-- 2025-03-11 09:44:02
Edit Download
3.39 KB lrw-r--r-- 2025-03-11 09:44:02
Edit Download
4.58 KB lrw-r--r-- 2025-03-11 09:44:03
Edit Download
8.73 KB lrw-r--r-- 2019-11-13 13:59:49
Edit Download
1.35 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
4.47 KB lrw-r--r-- 2025-08-05 14:01:02
Edit Download
5.29 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
7.05 KB lrw-r--r-- 2025-08-05 14:01:29
Edit Download
7.49 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
5.58 KB lrw-r--r-- 2019-10-11 14:55:29
Edit Download
9.59 KB lrw-r--r-- 2018-04-29 15:10:38
Edit Download
5.46 KB lrw-r--r-- 2025-10-07 06:30:48
Edit Download
5.96 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
52.07 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
2.38 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
955 B lrw-r--r-- 2025-08-05 14:01:06
Edit Download
11.91 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
3.28 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
1.76 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
3.67 KB lrw-r--r-- 2025-08-05 14:01:26
Edit Download
97.29 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
4.18 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
4.10 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
2.40 KB lrw-r--r-- 2022-10-08 13:22:08
Edit Download
27.44 KB lrw-r--r-- 2025-08-05 14:01:27
Edit Download
1.71 KB lrw-r--r-- 2025-08-05 14:01:02
Edit Download
1.83 KB lrw-r--r-- 2025-08-05 14:01:28
Edit Download
20.81 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
4.03 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
2.91 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
30.97 KB lrw-r--r-- 2021-10-08 19:17:42
Edit Download
43.75 KB lrw-r--r-- 2022-08-02 16:07:28
Edit Download
5.67 KB lrw-r--r-- 2022-08-02 16:07:28
Edit Download
25.91 KB lrw-r--r-- 2021-10-08 19:17:42
Edit Download
6.62 KB lrw-r--r-- 2021-10-08 19:17:42
Edit Download
5.32 KB lrw-r--r-- 2021-10-08 19:17:42
Edit Download
6.45 KB lrw-r--r-- 2021-10-08 19:17:42
Edit Download
6.16 KB lrw-r--r-- 2021-10-08 19:17:42
Edit Download
140.77 KB lrw-r--r-- 2019-10-12 00:44:13
Edit Download
22.31 KB lrw-r--r-- 2019-10-12 00:44:13
Edit Download
7.39 KB lrw-r--r-- 2019-10-12 00:44:13
Edit Download
22 B lrw-r--r-- 2025-08-05 14:01:07
Edit Download
2.07 KB lrw-r--r-- 2019-10-13 16:55:34
Edit Download
6.64 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
3.39 KB lrw-r--r-- 2025-08-05 14:01:27
Edit Download
11.87 KB lrw-r--r-- 2025-06-03 02:06:27
Edit Download
40.30 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
1.53 KB lrw-r--r-- 2025-08-05 14:01:28
Edit Download
9.16 KB lrw-r--r-- 2019-10-13 16:55:34
Edit Download
6.01 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
24.14 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
1.41 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
11.87 KB lrw-r--r-- 2025-08-05 14:01:27
Edit Download
962 B lrw-r--r-- 2025-08-05 14:01:07
Edit Download
4.62 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
5.10 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
2.34 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
3.58 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
1.31 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
5.34 KB lrw-r--r-- 2025-08-05 14:01:25
Edit Download
11.96 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
37.45 KB lrw-r--r-- 2025-03-11 09:44:03
Edit Download
6.53 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
264 B lrw-r--r-- 2025-08-05 14:01:07
Edit Download
2.24 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
8.27 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
29.46 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
2.73 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
34.82 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
17.17 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
8.03 KB lrw-r--r-- 2019-10-13 16:55:34
Edit Download
4.64 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
25 B lrw-r--r-- 2025-08-05 14:01:07
Edit Download
5.11 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
24 B lrw-r--r-- 2025-08-05 14:01:07
Edit Download
3.70 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
40.22 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
3.39 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
214 B lrw-r--r-- 2025-08-05 14:01:07
Edit Download
3.51 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
8.55 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
30.75 KB lrw-r--r-- 2025-08-05 14:01:04
Edit Download
6.50 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
15.65 KB lrw-r--r-- 2025-08-05 14:01:27
Edit Download
13.32 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
35.14 KB lrw-r--r-- 2025-10-30 14:27:37
Edit Download
3.35 KB lrw-r--r-- 2025-10-30 14:27:37
Edit Download
250 B lrw-r--r-- 2025-10-30 14:27:37
Edit Download
22.68 KB lrw-r--r-- 2025-10-30 14:27:37
Edit Download
1.66 KB lrw-r--r-- 2025-10-30 14:27:37
Edit Download
410 B lrw-r--r-- 2025-10-30 14:27:37
Edit Download
10.12 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
4.54 KB lrw-r--r-- 2019-10-13 16:55:34
Edit Download
2.44 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
1.95 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
1.99 KB lrw-r--r-- 2025-08-05 14:01:05
Edit Download
1.55 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
3.03 KB lrw-r--r-- 2023-10-14 18:54:42
Edit Download
41.74 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
1.47 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
3.15 KB lrw-r--r-- 2025-08-05 14:01:28
Edit Download
4.00 KB lrw-r--r-- 2025-08-05 14:01:28
Edit Download
1.91 KB lrw-r--r-- 2025-08-05 14:00:57
Edit Download
6.48 KB lrw-r--r-- 2022-10-08 07:49:42
Edit Download
18.98 KB lrw-r--r-- 2022-10-08 07:49:42
Edit Download
22 B lrw-r--r-- 2025-08-05 14:01:07
Edit Download
30.38 KB lrw-r--r-- 2025-08-05 14:01:06
Edit Download
5.42 KB lrw-r--r-- 2025-08-05 14:01:08
Edit Download
2.44 KB lrw-r--r-- 2025-08-05 14:01:07
Edit Download
15.88 KB lrw-r--r-- 2023-10-11 22:02:25
Edit Download
94.00 KB lrw-r--r-- 2023-10-11 22:02:25
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).