qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [RFC PATCH V6 01/18] cpu: make cpu_thread_is_idle publi


From: Frederic Konrad
Subject: Re: [Qemu-devel] [RFC PATCH V6 01/18] cpu: make cpu_thread_is_idle public.
Date: Tue, 07 Jul 2015 13:43:17 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0

On 07/07/2015 11:47, Alex Bennée wrote:
address@hidden writes:

From: KONRAD Frederic <address@hidden>
Why are we making this visible? Looking at the tree I can't see it being
used outside the cpus.c. I see the function is modified later for async
work. Is this something we are planing to use later?

Thanks for spoting this..
It is probably something we used before I put async_safe_work.

Fred

Signed-off-by: KONRAD Frederic <address@hidden>
---
  cpus.c            |  2 +-
  include/qom/cpu.h | 11 +++++++++++
  2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/cpus.c b/cpus.c
index 4f0e54d..2d62a35 100644
--- a/cpus.c
+++ b/cpus.c
@@ -74,7 +74,7 @@ bool cpu_is_stopped(CPUState *cpu)
      return cpu->stopped || !runstate_is_running();
  }
-static bool cpu_thread_is_idle(CPUState *cpu)
+bool cpu_thread_is_idle(CPUState *cpu)
  {
      if (cpu->stop || cpu->queued_work_first) {
          return false;
diff --git a/include/qom/cpu.h b/include/qom/cpu.h
index 39f0f19..af3c9e4 100644
--- a/include/qom/cpu.h
+++ b/include/qom/cpu.h
@@ -514,6 +514,17 @@ void qemu_cpu_kick(CPUState *cpu);
  bool cpu_is_stopped(CPUState *cpu);
/**
+ * cpu_thread_is_idle:
+ * @cpu: The CPU to check.
+ *
+ * Checks whether the CPU thread is idle.
+ *
+ * Returns: %true if the thread is idle;
+ * %false otherwise.
+ */
+bool cpu_thread_is_idle(CPUState *cpu);
+
+/**
   * run_on_cpu:
   * @cpu: The vCPU to run on.
   * @func: The function to be executed.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]