Re: [Qemu-devel] [PATCH qom-next 01/12] store prev_debug_excp_handler globaly and not per target

2012-05-30 Thread Igor Mammedov
On 05/30/2012 05:07 PM, Jan Kiszka wrote: On 2012-05-30 15:35, Igor Mammedov wrote: On 05/30/2012 12:51 PM, Jan Kiszka wrote: On 2012-05-30 00:10, Igor Mammedov wrote: current callers all do the same thing, storing in prev_debug_excp_handler previous handler and then calling it in breakpoint_h

Re: [Qemu-devel] [PATCH qom-next 01/12] store prev_debug_excp_handler globaly and not per target

2012-05-30 Thread Jan Kiszka
On 2012-05-30 15:35, Igor Mammedov wrote: > On 05/30/2012 12:51 PM, Jan Kiszka wrote: >> On 2012-05-30 00:10, Igor Mammedov wrote: >>> current callers all do the same thing, storing in prev_debug_excp_handler >>> previous handler and then calling it in breakpoint_handler. >>> Move prev_debug_excp_h

Re: [Qemu-devel] [PATCH qom-next 01/12] store prev_debug_excp_handler globaly and not per target

2012-05-30 Thread Igor Mammedov
On 05/30/2012 12:51 PM, Jan Kiszka wrote: On 2012-05-30 00:10, Igor Mammedov wrote: current callers all do the same thing, storing in prev_debug_excp_handler previous handler and then calling it in breakpoint_handler. Move prev_debug_excp_handler from local scope to global and make cpu_set_debug

Re: [Qemu-devel] [PATCH qom-next 01/12] store prev_debug_excp_handler globaly and not per target

2012-05-30 Thread Jan Kiszka
On 2012-05-30 00:10, Igor Mammedov wrote: > current callers all do the same thing, storing in prev_debug_excp_handler > previous handler and then calling it in breakpoint_handler. > Move prev_debug_excp_handler from local scope to global and make > cpu_set_debug_excp_handler() always to store previ

[Qemu-devel] [PATCH qom-next 01/12] store prev_debug_excp_handler globaly and not per target

2012-05-29 Thread Igor Mammedov
current callers all do the same thing, storing in prev_debug_excp_handler previous handler and then calling it in breakpoint_handler. Move prev_debug_excp_handler from local scope to global and make cpu_set_debug_excp_handler() always to store previous handler. Signed-off-by: Igor Mammedov --- c