From: G 3 <programmingkidx@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-devel qemu-devel <qemu-devel@nongnu.org>,
patches@linaro.org, Roman Bolshakov <r.bolshakv@yadro.com>,
BALATON Zoltan <balaton@eik.bme.hu>,
Berkus Decker <berkus@gmail.com>,
Gerd Hoffmann <kraxel@redhat.com>,
Ben Hekster <ben.hekster@foghorn.io>
Subject: Re: [Qemu-devel] [PATCH v3 1/7] ui/cocoa: Ensure we have the iothread lock when calling into QEMU
Date: Thu, 28 Feb 2019 16:53:45 -0500 [thread overview]
Message-ID: <CAKyx-3PZyhNN64O2MQP20MT6Xv2A3yLUsTCD6D08s+NtWMeTXg@mail.gmail.com> (raw)
In-Reply-To: <20190225102433.22401-2-peter.maydell@linaro.org>
On Mon, Feb 25, 2019 at 5:24 AM Peter Maydell <peter.maydell@linaro.org>
wrote:
> The Cocoa UI should run on the main thread; this is enforced
> in OSX Mojave. In order to be able to run on the main thread,
> we need to make sure we hold the iothread lock whenever we
> call into various QEMU UI midlayer functions.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> Reviewed-by: Roman Bolshakov <r.bolshakv@yadro.com>
> Tested-by: Roman Bolshakov <r.bolshakov@yadro.com>
> Message-id: 20190214102816.3393-2-peter.maydell@linaro.org
> ---
> Changes since v2: add with_iothread_lock wrap to the
> qmp_stop()/qmp_cont() calls
> ---
> ui/cocoa.m | 91 ++++++++++++++++++++++++++++++++++++++----------------
> 1 file changed, 65 insertions(+), 26 deletions(-)
>
> diff --git a/ui/cocoa.m b/ui/cocoa.m
> index e2567d6946..f1171c4865 100644
> --- a/ui/cocoa.m
> +++ b/ui/cocoa.m
> @@ -129,6 +129,21 @@
> NSTextField *pauseLabel;
> NSArray * supportedImageFileTypes;
>
> +// Utility function to run specified code block with iothread lock held
> +typedef void (^CodeBlock)(void);
>
Please don't use blocks. It would lock Mac OS X users into having to use
CLang. GCC does not support this non-standard extension.
C function pointers and Objective-C's selectors could work in place of
blocks.
Thank you.
next prev parent reply other threads:[~2019-02-28 21:54 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-25 10:24 [Qemu-devel] [PATCH v3 0/7] ui/cocoa: Use OSX's main loop Peter Maydell
2019-02-25 10:24 ` [Qemu-devel] [PATCH v3 1/7] ui/cocoa: Ensure we have the iothread lock when calling into QEMU Peter Maydell
2019-02-28 21:53 ` G 3 [this message]
2019-03-01 9:47 ` Peter Maydell
2019-02-25 10:24 ` [Qemu-devel] [PATCH v3 2/7] ui/cocoa: Use the pixman image directly in switchSurface Peter Maydell
2019-02-25 10:24 ` [Qemu-devel] [PATCH v3 3/7] ui/cocoa: Factor out initial menu creation Peter Maydell
2019-02-25 10:24 ` [Qemu-devel] [PATCH v3 4/7] ui/cocoa: Move console/device menu creation code up in file Peter Maydell
2019-02-25 10:24 ` [Qemu-devel] [PATCH v3 5/7] ui/cocoa: Don't call NSApp sendEvent directly from handleEvent Peter Maydell
2019-02-25 10:24 ` [Qemu-devel] [PATCH v3 6/7] ui/cocoa: Subclass NSApplication so we can implement sendEvent Peter Maydell
2019-02-25 10:24 ` [Qemu-devel] [PATCH v3 7/7] ui/cocoa: Perform UI operations only on the main thread Peter Maydell
2019-02-28 22:35 ` G 3
2019-02-25 10:28 ` [Qemu-devel] [PATCH v3 0/7] ui/cocoa: Use OSX's main loop Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAKyx-3PZyhNN64O2MQP20MT6Xv2A3yLUsTCD6D08s+NtWMeTXg@mail.gmail.com \
--to=programmingkidx@gmail.com \
--cc=balaton@eik.bme.hu \
--cc=ben.hekster@foghorn.io \
--cc=berkus@gmail.com \
--cc=kraxel@redhat.com \
--cc=patches@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=r.bolshakv@yadro.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).