qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH v1 03/12] thread: add qemu_spin_destroy


From: Alex Bennée
Subject: Re: [PATCH v1 03/12] thread: add qemu_spin_destroy
Date: Tue, 02 Jun 2020 20:23:41 +0100
User-agent: mu4e 1.5.1; emacs 28.0.50

Robert Foley <robert.foley@linaro.org> writes:

> From: "Emilio G. Cota" <cota@braap.org>
>
> It will be used for TSAN annotations.
>
> Signed-off-by: Emilio G. Cota <cota@braap.org>
> Signed-off-by: Robert Foley <robert.foley@linaro.org>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

> ---
>  include/qemu/thread.h | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/include/qemu/thread.h b/include/qemu/thread.h
> index d22848138e..e50a073889 100644
> --- a/include/qemu/thread.h
> +++ b/include/qemu/thread.h
> @@ -215,6 +215,9 @@ static inline void qemu_spin_init(QemuSpin *spin)
>      __sync_lock_release(&spin->value);
>  }
>  
> +static inline void qemu_spin_destroy(QemuSpin *spin)
> +{ }
> +
>  static inline void qemu_spin_lock(QemuSpin *spin)
>  {
>      while (unlikely(__sync_lock_test_and_set(&spin->value, true))) {


-- 
Alex Bennée



reply via email to

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