summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown2007-01-29 05:19:45 +0100
committerMichael Brown2007-01-29 05:19:45 +0100
commitbde8878eef55434428da0d8531c8c17d42867427 (patch)
tree381c5fca26b33c0e7a571c481de76f51140b4624 /src/core
parentAdded async_block_progress() and default SIGUPDATE handler. (diff)
downloadipxe-bde8878eef55434428da0d8531c8c17d42867427.tar.gz
ipxe-bde8878eef55434428da0d8531c8c17d42867427.tar.xz
ipxe-bde8878eef55434428da0d8531c8c17d42867427.zip
Keep HTTP progress updated, and display a progress indicator during the
download
Diffstat (limited to 'src/core')
-rw-r--r--src/core/download.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/download.c b/src/core/download.c
index bc8901272..4522bf2c8 100644
--- a/src/core/download.c
+++ b/src/core/download.c
@@ -170,6 +170,7 @@ static void download_reap ( struct async *async ) {
static struct async_operations download_async_operations = {
.reap = download_reap,
.signal = {
- [SIGCHLD] = download_sigchld,
+ [SIGCHLD] = download_sigchld,
+ [SIGUPDATE] = SIG_IGN,
},
};