diff options
author | David Hildenbrand | 2022-10-14 15:47:14 +0200 |
---|---|---|
committer | David Hildenbrand | 2022-10-27 11:00:28 +0200 |
commit | 6556aadc18c560e493b29dd99cae2cbf86d214cb (patch) | |
tree | 7d4b15d6988db2f112fab919483a2b783ad7856a /softmmu | |
parent | hw/mem/nvdimm: fix error message for 'unarmed' flag (diff) | |
download | qemu-6556aadc18c560e493b29dd99cae2cbf86d214cb.tar.gz qemu-6556aadc18c560e493b29dd99cae2cbf86d214cb.tar.xz qemu-6556aadc18c560e493b29dd99cae2cbf86d214cb.zip |
util: Cleanup and rename os_mem_prealloc()
Let's
* give the function a "qemu_*" style name
* make sure the parameters in the implementation match the prototype
* rename smp_cpus to max_threads, which makes the semantics of that
parameter clearer
... and add a function documentation.
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Message-Id: <20221014134720.168738-2-david@redhat.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'softmmu')
-rw-r--r-- | softmmu/cpus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/cpus.c b/softmmu/cpus.c index 61b27ff59d..01c94fd298 100644 --- a/softmmu/cpus.c +++ b/softmmu/cpus.c @@ -354,7 +354,7 @@ static void qemu_init_sigbus(void) /* * ALERT: when modifying this, take care that SIGBUS forwarding in - * os_mem_prealloc() will continue working as expected. + * qemu_prealloc_mem() will continue working as expected. */ memset(&action, 0, sizeof(action)); action.sa_flags = SA_SIGINFO; |