summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Wang <gwang@php.net>2008-08-26 22:05:17 +0000
committerGeorge Wang <gwang@php.net>2008-08-26 22:05:17 +0000
commitf091e745c90405111d1618da1c19be4600093f22 (patch)
tree81a013fdf8ad5799936b3a1320ec22b8407a4657
parente7eba5af6a84348002b78beaa7c0e31e43b91415 (diff)
downloadphp-git-f091e745c90405111d1618da1c19be4600093f22.tar.gz
ignore signal SIGXFSZ
-rw-r--r--sapi/litespeed/lsapi_main.c7
-rw-r--r--sapi/litespeed/lsapilib.c10
2 files changed, 10 insertions, 7 deletions
diff --git a/sapi/litespeed/lsapi_main.c b/sapi/litespeed/lsapi_main.c
index 7f3cd7ef9b..967c9acc60 100644
--- a/sapi/litespeed/lsapi_main.c
+++ b/sapi/litespeed/lsapi_main.c
@@ -16,6 +16,7 @@
+----------------------------------------------------------------------+
*/
+/* $Id$ */
#include "php.h"
#include "SAPI.h"
@@ -804,14 +805,14 @@ zend_function_entry litespeed_functions[] = {
static PHP_MINIT_FUNCTION(litespeed)
{
- //REGISTER_INI_ENTRIES();
+ /* REGISTER_INI_ENTRIES(); */
return SUCCESS;
}
static PHP_MSHUTDOWN_FUNCTION(litespeed)
{
- //UNREGISTER_INI_ENTRIES();
+ /* UNREGISTER_INI_ENTRIES(); */
return SUCCESS;
}
@@ -840,7 +841,7 @@ static int add_associate_array( const char * pKey, int keyLen, const char * pVal
Fetch all HTTP request headers */
PHP_FUNCTION(litespeed_request_headers)
{
- //TODO:
+ /* TODO: */
if (ZEND_NUM_ARGS() > 0) {
WRONG_PARAM_COUNT;
}
diff --git a/sapi/litespeed/lsapilib.c b/sapi/litespeed/lsapilib.c
index eac1cd98d7..145ed0a973 100644
--- a/sapi/litespeed/lsapilib.c
+++ b/sapi/litespeed/lsapilib.c
@@ -1,4 +1,3 @@
-
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
@@ -17,6 +16,7 @@
+----------------------------------------------------------------------+
*/
+/* $Id$ */
/*
Copyright (c) 2007, Lite Speed Technologies Inc.
@@ -50,8 +50,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-
-
#include <lsapilib.h>
#include <ctype.h>
@@ -138,7 +136,7 @@ static const char *HTTP_HEADERS[H_TRANSFER_ENCODING+1] = {
};
static int HTTP_HEADER_LEN[H_TRANSFER_ENCODING+1] = {
- 6, 14, 15, 15, 13, 10, 12, 14, 6, 7, 4, 6, 7, 10, //user-agent
+ 6, 14, 15, 15, 13, 10, 12, 14, 6, 7, 4, 6, 7, 10, /* user-agent */
13,17, 8, 13, 8, 19, 10, 5, 15, 3, 17
};
@@ -578,6 +576,10 @@ int LSAPI_Init(void)
lsapi_signal(SIGPIPE, lsapi_sigpipe);
lsapi_signal(SIGUSR1, lsapi_siguser1);
+#if defined(SIGXFSZ) && defined(SIG_IGN)
+ signal(SIGXFSZ, SIG_IGN);
+#endif
+
if ( LSAPI_InitRequest( &g_req, LSAPI_SOCK_FILENO ) == -1 ) {
return -1;
}