xref: /PHP-7.1/sapi/fpm/fpm/fpm_trace.h (revision 03f3b847)
1 	/* $Id: fpm_trace.h,v 1.3 2008/07/20 22:43:39 anight Exp $ */
2 	/* (c) 2007,2008 Andrei Nigmatulin */
3 
4 #ifndef FPM_TRACE_H
5 #define FPM_TRACE_H 1
6 
7 #include <unistd.h>
8 
9 int fpm_trace_signal(pid_t pid);
10 int fpm_trace_ready(pid_t pid);
11 int fpm_trace_close(pid_t pid);
12 int fpm_trace_get_long(long addr, long *data);
13 int fpm_trace_get_strz(char *buf, size_t sz, long addr);
14 
15 #endif
16