Re: [PATCH] monitor: Use LOCK_GUARD macros

2020-09-08 Thread Dr. David Alan Gilbert
* Markus Armbruster (arm...@redhat.com) wrote: > "Dr. David Alan Gilbert (git)" writes: > > > From: "Dr. David Alan Gilbert" > > > > Use the lock guard macros in monitor/misc.c - saves > > a bunch of goto's, and a temporary variable, but mostly > > because I prefer not having to release them in

Re: [PATCH] monitor: Use LOCK_GUARD macros

2020-09-08 Thread Markus Armbruster
"Dr. David Alan Gilbert (git)" writes: > From: "Dr. David Alan Gilbert" > > Use the lock guard macros in monitor/misc.c - saves > a bunch of goto's, and a temporary variable, but mostly > because I prefer not having to release them in error paths. > > Signed-off-by: Dr. David Alan Gilbert > ---