diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-27 14:31:35 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-27 14:31:35 +0000 |
commit | f6156ab875f150f8f719c39b81544c3d379e72d5 (patch) | |
tree | 1877f537ff73f8f6a75b5d9862f17ab79d532ddb /package/uhttpd/src/uhttpd-lua.c | |
parent | e8476a2ff1cdd8ffca1b57f52bc0f6f43943bbaf (diff) | |
download | upstream-f6156ab875f150f8f719c39b81544c3d379e72d5.tar.gz upstream-f6156ab875f150f8f719c39b81544c3d379e72d5.tar.bz2 upstream-f6156ab875f150f8f719c39b81544c3d379e72d5.zip |
[package] uhttpd: block SIGCHLD until it is expected (#6957)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20513 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uhttpd/src/uhttpd-lua.c')
-rw-r--r-- | package/uhttpd/src/uhttpd-lua.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/uhttpd/src/uhttpd-lua.c b/package/uhttpd/src/uhttpd-lua.c index fcbdc64825..b3f3cb498f 100644 --- a/package/uhttpd/src/uhttpd-lua.c +++ b/package/uhttpd/src/uhttpd-lua.c @@ -452,7 +452,7 @@ void uh_lua_request(struct client *cl, struct http_request *req, lua_State *L) FD_SET(wfd[1], &writer); /* wait until we can read or write or both */ - if( select(fd_max, &reader, + if( select_intr(fd_max, &reader, (content_length > -1) ? &writer : NULL, NULL, (data_sent < 1) ? &timeout : NULL) > 0 ) { |