diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2010-06-10 11:42:21 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-06-12 08:49:14 +0300 |
commit | fe98ac146109e307d7e19486dcfebbc89259d34d (patch) | |
tree | e04ea610c6c8a7461a522f2c7d66acc2624a5932 | |
parent | 69bd73b1b027f56ad68ac83aa5628c89fa05c10f (diff) |
Rename os_setup_signal_handling() to os_setup_early_signal_handling()
Rename os_setup_signal_handling() to os_setup_early_signal_handling()
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Acked-by: Juan Quintela <quintela@redhat.com>
Acked-by: Richard Henderson <rth@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | os-posix.c | 2 | ||||
-rw-r--r-- | os-win32.c | 2 | ||||
-rw-r--r-- | sysemu.h | 2 | ||||
-rw-r--r-- | vl.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/os-posix.c b/os-posix.c index 914a4d1d4e..948f662e91 100644 --- a/os-posix.c +++ b/os-posix.c @@ -31,7 +31,7 @@ #include "config-host.h" #include "sysemu.h" -void os_setup_signal_handling(void) +void os_setup_early_signal_handling(void) { struct sigaction act; sigfillset(&act.sa_mask); diff --git a/os-win32.c b/os-win32.c index dfa90bce6a..a936f7ad22 100644 --- a/os-win32.c +++ b/os-win32.c @@ -159,7 +159,7 @@ static BOOL WINAPI qemu_ctrl_handler(DWORD type) return TRUE; } -void os_setup_signal_handling(void) +void os_setup_early_signal_handling(void) { /* Note: cpu_interrupt() is currently not SMP safe, so we force QEMU to run on a single CPU */ @@ -79,7 +79,7 @@ int qemu_loadvm_state(QEMUFile *f); /* SLIRP */ void do_info_slirp(Monitor *mon); -void os_setup_signal_handling(void); +void os_setup_early_signal_handling(void); typedef enum DisplayType { @@ -2451,7 +2451,7 @@ int main(int argc, char **argv, char **envp) qemu_cache_utils_init(envp); QLIST_INIT (&vm_change_state_head); - os_setup_signal_handling(); + os_setup_early_signal_handling(); module_call_init(MODULE_INIT_MACHINE); machine = find_default_machine(); |