mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
Fix build failure for non-osx *nixes
This commit is contained in:
parent
6704d8d421
commit
9005b24aed
@ -1343,10 +1343,10 @@ int main(int argc, char **argv) /* {{{ */
|
||||
struct sigaction signal_struct;
|
||||
signal_struct.sa_sigaction = phpdbg_signal_handler;
|
||||
signal_struct.sa_flags = SA_SIGINFO | SA_NODEFER;
|
||||
signal_struct.sa_mask = 0;
|
||||
sigemptyset(&signal_struct.sa_mask);
|
||||
sigio_struct.sa_sigaction = phpdbg_sigio_handler;
|
||||
sigio_struct.sa_flags = SA_SIGINFO;
|
||||
sigio_struct.sa_mask = 0;
|
||||
sigemptyset(&sigio_struct.sa_mask);
|
||||
|
||||
address = strdup("127.0.0.1");
|
||||
#endif
|
||||
|
@ -299,7 +299,9 @@ zend_op_array *phpdbg_compile_file(zend_file_handle *file, int type) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
void phpdbg_free_file_source(phpdbg_file_source *data) {
|
||||
void phpdbg_free_file_source(zval *zv) {
|
||||
phpdbg_file_source *data = Z_PTR_P(zv);
|
||||
|
||||
#if HAVE_MMAP
|
||||
if (data->map) {
|
||||
munmap(data->map, data->len + ZEND_MMAP_AHEAD);
|
||||
|
Loading…
Reference in New Issue
Block a user