[Qemu-devel] [PATCH 2/4] trace: Direct access of atomics is verboten, use the API

2013-02-06 Thread Stefan Hajnoczi
From: Markus Armbruster The GLib Reference Manual says: It is very important that all accesses to a particular integer or pointer be performed using only this API and that different sizes of operation are not mixed or used on overlapping memory regions. Never read or assign direc

Re: [Qemu-devel] [PATCH 2/4] trace: Direct access of atomics is verboten, use the API

2013-01-31 Thread Harsh Bora
On 01/25/2013 09:13 PM, Markus Armbruster wrote: The GLib Reference Manual says: It is very important that all accesses to a particular integer or pointer be performed using only this API and that different sizes of operation are not mixed or used on overlapping memory region

Re: [Qemu-devel] [PATCH 2/4] trace: Direct access of atomics is verboten, use the API

2013-01-31 Thread Laszlo Ersek
On 01/25/13 16:43, Markus Armbruster wrote: > The GLib Reference Manual says: > > It is very important that all accesses to a particular integer or > pointer be performed using only this API and that different sizes > of operation are not mixed or used on overlapping memory > regio

[Qemu-devel] [PATCH 2/4] trace: Direct access of atomics is verboten, use the API

2013-01-25 Thread Markus Armbruster
The GLib Reference Manual says: It is very important that all accesses to a particular integer or pointer be performed using only this API and that different sizes of operation are not mixed or used on overlapping memory regions. Never read or assign directly from or to a value --