Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 578538 Details for
Bug 811147
Report correct crash_function in the crash sumary
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Proposed patch
btparser-rhbz#811147.patch (text/plain), 172.08 KB, created by
Karel Klíč
on 2012-04-19 08:31:44 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Karel Klíč
Created:
2012-04-19 08:31:44 UTC
Size:
172.08 KB
patch
obsolete
>From a2ea4aecddb469e388fc12f6fbec62afafc6b20a Mon Sep 17 00:00:00 2001 >From: Karel Klic <kklic@redhat.com> >Date: Thu, 19 Apr 2012 10:04:44 +0200 >Subject: [PATCH 1/4] Handle truncated function arguments in frame parser. > >--- > lib/frame.c | 9 +++++++++ > 1 files changed, 9 insertions(+), 0 deletions(-) > >diff --git a/lib/frame.c b/lib/frame.c >index 6aa1fb5..6d5a247 100644 >--- a/lib/frame.c >+++ b/lib/frame.c >@@ -732,6 +732,15 @@ btp_frame_skip_function_args(const char **input, struct btp_location *location) > bool escape = false; > do > { >+ /* Sometimes function args would be too long so printer >+ * truncates them. See frame #33 in rhbz#803600. >+ */ >+ if (!escape && 0 == strncmp(local_input, "(truncated)", strlen("(truncated)"))) >+ { >+ depth = 0; >+ string = false; >+ } >+ > if (string) > { > if (escape) >-- >1.7.7.6 > >From ce3530d872ac0530d2ceb29f506fe94b562682f2 Mon Sep 17 00:00:00 2001 >From: Karel Klic <kklic@redhat.com> >Date: Thu, 19 Apr 2012 10:05:37 +0200 >Subject: [PATCH 2/4] Test problematic frame #33 from rhbz#803600. > >--- > tests/frame.at | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > >diff --git a/tests/frame.at b/tests/frame.at >index eb96f97..c5e5d7c 100644 >--- a/tests/frame.at >+++ b/tests/frame.at >@@ -250,6 +250,8 @@ int main(void) > check(true, "(this=0x7f1860023400, DPI=<value optimized out>)"); > /* string */ > check(true, "(filename=0x18971b0 \"/home/jfclere/.recently-used.xbel\")"); >+ /* problematic frame #33 from rhbz#803600 */ >+ check(true, "(func=<function at remote 0x1b3aa28>, arg=(<vmmAsyncJob(show_progress=False, topwin=<gtk.Window at remote 0x1b43690>, cancel_args=[<...>], _gobject_handles=[], _signal_id_map={}, cancel_job=None, window=<gtk.glade.XML at remote 0x1b43aa0>, _gobject_timeouts=[], config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b0>, _objects=@<:@'<vmmErrorDialog object at 0x1885460 (virtManager+error+vmmErrorDialog at 0xfe9080)>', '<vmmEngine object at 0x1acaaf0 (virtManager+engine+vmmEngine at 0xfe8920)>', '<vmmErrorDialog object at 0x1acacd0 (virtManager+error+vmmErrorDialog at 0xfe2000)>', '<vmmSystray object at 0x1acad20 (virtManager+systray+vmmSystray at 0xfe8e60)>', '<vmmErrorDialog object at 0x1acad70 (virtManager+error+vmmErrorDialog at 0xd9b120)>', '<vm...(truncated), kw={})"); > /* TODO: parentesis balance */ > return 0; > } >-- >1.7.7.6 > >From 65529919c366453afdc3e6d0df15dbb802b45a3b Mon Sep 17 00:00:00 2001 >From: Karel Klic <kklic@redhat.com> >Date: Thu, 19 Apr 2012 10:13:14 +0200 >Subject: [PATCH 3/4] New test for btp_backtrace_get_crash_frame, extedned > test for btp_backtrace_find_crash_thread. > >Both tests cover rhbz#811147. >--- > tests/backtrace.at | 50 +- > tests/backtraces/803600.bt | 2375 ++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 2421 insertions(+), 4 deletions(-) > create mode 100644 tests/backtraces/803600.bt > >diff --git a/tests/backtrace.at b/tests/backtrace.at >index 057d2e6..f187439 100644 >--- a/tests/backtrace.at >+++ b/tests/backtrace.at >@@ -67,12 +67,12 @@ AT_TESTFUN([btp_backtrace_find_crash_thread], > #include <lib/utils.h> > #include <assert.h> > >-int main(void) >+void check(const char *path, const char *first_thread_function_name) > { >- /* Load the backtrace from Red Hat Bugzilla bug #621492. */ >+ /* Load the backtrace from a file. */ > struct btp_location location; > btp_location_init(&location); >- char *full_input = btp_file_to_string("../../backtraces/621492.bt"); >+ char *full_input = btp_file_to_string(path); > assert(full_input); > char *input = full_input; > struct btp_backtrace *backtrace = btp_backtrace_parse(&input, &location); >@@ -81,10 +81,19 @@ int main(void) > /* Check that the crash thread is found. */ > struct btp_thread *crash_thread = btp_backtrace_find_crash_thread(backtrace); > assert(crash_thread); >- assert(0 == strcmp(crash_thread->frames->function_name, "raise")); >+ assert(0 == strcmp(crash_thread->frames->function_name, first_thread_function_name)); > btp_backtrace_free(backtrace); > return 0; > } >+ >+int main(void) >+{ >+ /* Test the backtrace from Red Hat Bugzilla bug #621492. */ >+ check("../../backtraces/621492.bt", "raise"); >+ /* Test the backtrace from Red Hat Bugzilla bug #803600. */ >+ check("../../backtraces/803600.bt", "validate_row"); >+ return 0; >+} > ]) > > ## ------------------------------- ## >@@ -150,3 +159,36 @@ int main(void) > return 0; > } > ]]) >+ >+## ----------------------------- ## >+## btp_backtrace_get_crash_frame ## >+## ----------------------------- ## >+AT_TESTFUN([btp_backtrace_get_crash_frame], >+[[ >+#include <lib/backtrace.h> >+#include <lib/thread.h> >+#include <lib/frame.h> >+#include <lib/location.h> >+#include <lib/utils.h> >+#include <assert.h> >+#include <stdio.h> >+ >+int main(void) >+{ >+ /* Check the crash frame of backtrace from Red Hat Bugzilla bug #803600. */ >+ struct btp_location location; >+ btp_location_init(&location); >+ char *full_input = btp_file_to_string("../../backtraces/803600.bt"); >+ assert(full_input); >+ char *input = full_input; >+ struct btp_backtrace *backtrace = btp_backtrace_parse(&input, &location); >+ assert(backtrace); >+ struct btp_frame *crash_frame = btp_backtrace_get_crash_frame(backtrace); >+ puts(crash_frame->function_name); >+ assert(0 == strcmp(crash_frame->function_name, "validate_row")); >+ btp_frame_free(crash_frame); >+ btp_backtrace_free(backtrace); >+ return 0; >+} >+]]) >+ >diff --git a/tests/backtraces/803600.bt b/tests/backtraces/803600.bt >new file mode 100644 >index 0000000..fa522bc >--- /dev/null >+++ b/tests/backtraces/803600.bt >@@ -0,0 +1,2375 @@ >+[New Thread 3575] >+[New Thread 3618] >+[Thread debugging using libthread_db enabled] >+Core was generated by `/usr/bin/python /usr/share/virt-manager/virt-manager.py'. >+Program terminated with signal 11, Segmentation fault. >+#0 0x0000003b26460e69 in validate_row (tree_view=0x1bac640, tree=0x7fafc004c960, node=0x1fe90c0, iter=0x7fff21c84380, path=<value optimized out>) at gtktreeview.c:5699 >+5699 gtktreeview.c: No such file or directory. >+ in gtktreeview.c >+ >+Thread 2 (Thread 0x7fafc69f7700 (LWP 3618)): >+#0 0x0000003ec220e48d in write () at ../sysdeps/unix/syscall-template.S:82 >+No locals. >+#1 0x00007fafcc8607d6 in virNetSocketWriteWire (sock=0x7fafc0002330, buf=0x7fafc0083ce1 "", len=56) at rpc/virnetsocket.c:928 >+ ret = <value optimized out> >+ __FUNCTION__ = "virNetSocketWriteWire" >+#2 0x00007fafcc8609be in virNetSocketWrite (sock=0x7fafc0002330, buf=0x7fafc0083ce1 "", len=56) at rpc/virnetsocket.c:1075 >+ ret = <value optimized out> >+#3 0x00007fafcc85dfc1 in virNetClientIOWriteMessage (client=0x7fafc00024f0, thiscall=0x7fafc0046fd0) at rpc/virnetclient.c:714 >+ ret = <value optimized out> >+#4 virNetClientIOHandleOutput (client=0x7fafc00024f0, thiscall=0x7fafc0046fd0) at rpc/virnetclient.c:747 >+ ret = 56 >+ thecall = 0x7fafc0046fd0 >+#5 virNetClientIOEventLoop (client=0x7fafc00024f0, thiscall=0x7fafc0046fd0) at rpc/virnetclient.c:940 >+ tmp = <value optimized out> >+ ignore = 0 '\000' >+ oldmask = {__val = {0, 269734670536, 1, 269734671160, 1, 269734670473, 1, 269734671545, 1, 34678736, 1, 140392817769696, 140392817239288, 269734671707, 140392817239288, 269734616793}} >+ timeout = -1 >+ prev = <value optimized out> >+ blockedsigs = {__val = {134287360, 0 <repeats 15 times>}} >+ fds = {{fd = 20, events = 4, revents = 4}, {fd = 21, events = 1, revents = 0}} >+ ret = <value optimized out> >+ __func__ = "virNetClientIOEventLoop" >+ __FUNCTION__ = "virNetClientIOEventLoop" >+#6 0x00007fafcc85e590 in virNetClientIO (client=0x7fafc00024f0, msg=<value optimized out>, expectReply=true) at rpc/virnetclient.c:1145 >+ rv = -1 >+#7 virNetClientSend (client=0x7fafc00024f0, msg=<value optimized out>, expectReply=true) at rpc/virnetclient.c:1228 >+ call = 0x7fafc0046fd0 >+ ret = -1 >+ __FUNCTION__ = "virNetClientSend" >+#8 0x00007fafcc85d1cd in virNetClientProgramCall (prog=0x7fafc00435a0, client=0x7fafc00024f0, serial=813, proc=91, args_filter=0x7fafcc858ff0 <xdr_remote_storage_pool_num_of_volumes_args>, args=0x7fafc69f5130, ret_filter=0x7fafcc855e10 <xdr_remote_storage_pool_num_of_volumes_ret>, ret=0x7fafc69f5120) at rpc/virnetclientprogram.c:291 >+ msg = 0x7fafc0083ce0 >+ __FUNCTION__ = "virNetClientProgramCall" >+#9 0x00007fafcc841b73 in call (conn=<value optimized out>, priv=0x7fafc0002250, flags=<value optimized out>, proc_nr=91, args_filter=<value optimized out>, args=<value optimized out>, ret_filter=0x7fafcc855e10 <xdr_remote_storage_pool_num_of_volumes_ret>, ret=0x7fafc69f5120 "") at remote/remote_driver.c:4084 >+ rv = <value optimized out> >+ prog = 0x7fafc00435a0 >+ counter = 813 >+ client = 0x7fafc00024f0 >+#10 0x00007fafcc848170 in remoteStoragePoolNumOfVolumes (pool=0x1b96b40) at remote/remote_client_bodies.h:5213 >+ rv = -1 >+ args = {pool = {name = 0xab5440 "default", uuid = "\345A\260W\035a\306\237\371n\020\350\r\266!\244"}} >+ ret = {num = 0} >+#11 0x00007fafcc8195e5 in virStoragePoolNumOfVolumes (pool=0x1b96b40) at libvirt.c:11159 >+ ret = <value optimized out> >+ __func__ = "virStoragePoolNumOfVolumes" >+ __FUNCTION__ = "virStoragePoolNumOfVolumes" >+#12 0x00007fafccb47132 in libvirt_virStoragePoolListVolumes (self=<value optimized out>, args=<value optimized out>) at libvirt-override.c:2273 >+ _save = 0x21127d0 >+ py_retval = <value optimized out> >+ names = 0x0 >+ c_retval = <value optimized out> >+ i = <value optimized out> >+ pool = 0x1b96b40 >+ pyobj_pool = <PyCObject at remote 0x7fafd4481350> >+#13 0x0000003ecd6de7f4 in call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3794 >+ callargs = (<PyCObject at remote 0x7fafd4481350>,) >+ flags = <value optimized out> >+ tstate = <value optimized out> >+ func = <built-in function virStoragePoolListVolumes> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x1d13f08 >+ x = <value optimized out> >+#14 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x1d13f10 >+ stack_pointer = <value optimized out> >+ next_instr = 0xcc67b3 "}\001" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = '_o' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1d13f08 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0xcc9030 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0xcc67a4 "t" >+ names = ('libvirtmod', 'virStoragePoolListVolumes', '_o', 'None', 'libvirtError') >+ consts = ('list the storage volumes, stores the pointers to the names in @names ', 'virStoragePoolListVolumes() failed', 'pool', None) >+#15 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0x1d13ef8 >+ f = Frame 0x1d13d80, for file /usr/lib64/python2.6/site-packages/libvirt.py, line 1872, in listVolumes (self=<virStoragePool(_conn=<virConnect(_o=<PyCObject at remote 0x7fafd4481ee0>) at remote 0x1b3f9e0>, _o=<PyCObject at remote 0x7fafd4481350>) at remote 0x1b3fc68>) >+ tstate = 0x21127d0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#16 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0xd11de8> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x1d13b68 >+ x = <value optimized out> >+#17 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x1d13b70 >+ stack_pointer = <value optimized out> >+ next_instr = 0x1864ebb "}\001" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'listVolumes' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1d13b68 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x194d6c0 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x1864e94 "|" >+ names = ('is_active', '_volumes', 'pool', 'listVolumes', 'vmmStorageVolume', 'conn', 'storageVolLookupByName') >+ consts = (None,) >+#18 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0x1d13b48 >+ f = Frame 0x1d139d0, for file /usr/share/virt-manager/virtManager/storagepool.py, line 125, in update_volumes (self=<vmmStoragePool(_next_signal_id=1, _gobject_handles=[], _signal_id_map={}, uuid='default', _active_xml_flags=0, _is_xml_valid=True, _volumes={'rhel-5-mrg-2.1-i386.iso': <vmmStorageVolume(_next_signal_id=1, _gobject_handles=[], _signal_id_map={}, name='rhel-5-mrg-2.1-i386.iso', _active_xml_flags=0, _is_xml_valid=True, vol=<virStorageVol(_conn=<virConnect(_o=<PyCObject at remote 0x7fafd4481ee0>) at remote 0x1b3f9e0>, _o=<PyCObject at remote 0x7fafd4481df0>) at remote 0x1b48098>, _gconf_handles=[], _inactive_xml_flags=0, _xml="<volume>\n <name>rhel-5-mrg-2.1-i386.iso</name>\n <key>/var/lib/libvirt/images/rhel-5-mrg-2.1-i386.iso</key>\n <source>\n </source>\n <capacity>307554304</capacity>\n <allocation>307556352</allocation>\n <target>\n <path>/var/lib/libvirt/images/rhel-5-mrg-2.1-i386.iso</path>\n <format type='iso'/>\n <permissions>\n <mode>0644</mode>\n <owner>107</owner>\...(truncated) >+ tstate = 0x21127d0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#19 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0x1953140> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x21a9270 >+ x = <value optimized out> >+#20 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x21a9278 >+ stack_pointer = <value optimized out> >+ next_instr = 0x194e21d "\001|" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'update_volumes' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x21a9270 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x194d558 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x194e214 "|" >+ names = ('update_volumes', '_volumes') >+ consts = (None,) >+#21 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0x21a9268 >+ f = Frame 0x21a90f0, for file /usr/share/virt-manager/virtManager/storagepool.py, line 105, in get_volumes (self=<vmmStoragePool(_next_signal_id=1, _gobject_handles=[], _signal_id_map={}, uuid='default', _active_xml_flags=0, _is_xml_valid=True, _volumes={'rhel-5-mrg-2.1-i386.iso': <vmmStorageVolume(_next_signal_id=1, _gobject_handles=[], _signal_id_map={}, name='rhel-5-mrg-2.1-i386.iso', _active_xml_flags=0, _is_xml_valid=True, vol=<virStorageVol(_conn=<virConnect(_o=<PyCObject at remote 0x7fafd4481ee0>) at remote 0x1b3f9e0>, _o=<PyCObject at remote 0x7fafd4481df0>) at remote 0x1b48098>, _gconf_handles=[], _inactive_xml_flags=0, _xml="<volume>\n <name>rhel-5-mrg-2.1-i386.iso</name>\n <key>/var/lib/libvirt/images/rhel-5-mrg-2.1-i386.iso</key>\n <source>\n </source>\n <capacity>307554304</capacity>\n <allocation>307556352</allocation>\n <target>\n <path>/var/lib/libvirt/images/rhel-5-mrg-2.1-i386.iso</path>\n <format type='iso'/>\n <permissions>\n <mode>0644</mode>\n <owner>107</owner>\n ...(truncated) >+ tstate = 0x21127d0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#22 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0x1952f50> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x1fab3e0 >+ x = <value optimized out> >+#23 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x1fab3e8 >+ stack_pointer = <value optimized out> >+ next_instr = 0x1895948 "}\003" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'get_volumes' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1fab3e0 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x1877468 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x1895914 "|" >+ names = ('current_pool', 'widget', 'get_model', 'clear', 'get_volumes', 'keys', 'get_target_path', 'None', 'VirtualDisk', 'path_in_use_by', 'conn', 'vmm', 'join', 'logging', 'exception', 'append', 'get_name', 'get_pretty_capacity', 'get_format') >+ consts = (None, 'vol-list', ', ', 'Failed to determine if storage volume in use.', '') >+#24 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0x1fab398 >+ f = Frame 0x1fab220, for file /usr/share/virt-manager/virtManager/host.py, line 873, in populate_storage_volumes (self=<vmmHost(topwin=<gtk.Window at remote 0x1b650f0>, memory_usage_graph=<Sparkline(num_sets=1, reversed=False, rgb=[], filled=True, _data_array=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, <float at remote 0x1ead628>, <float at remote 0x1f37768>, <float at remote 0x1f37960>, <float at remote 0x20ebbf0>, <float at remote 0x20ebc08>, <float at remote 0x1f376f0>, <float at remote 0x1f37a20>, <float at remote 0x1ead418>, <float at remote 0x15c6978>, <float at remote 0x1ead3a0>, <float at remote 0x1f376c0>]) at remote 0x1b54870>, gladefile='/usr/share/virt-manager/vmm-host.glade', addinterface=None, addpool=None, conn=<vmmC...(truncated) >+ tstate = 0x21127d0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#25 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0x19a3b18> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x7fafc004b4f8 >+ x = <value optimized out> >+#26 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x7fafc004b500 >+ stack_pointer = <value optimized out> >+ next_instr = 0x18713e1 "\001d" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'populate_storage_volumes' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafc004b4e8 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x186faf8 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x18713c4 "\210" >+ names = ('delete', 'refresh_current_pool', 'populate_storage_volumes') >+ consts = (None,) >+#27 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0x186faf8, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=0, kws=0x7fafc00019d0, kwcount=0, defs=0x0, defcount=0, closure=(<cell at remote 0x1b53c58>, <cell at remote 0x1b53fa0>)) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafc004b4e8 >+ tstate = 0x21127d0 >+ x = <value optimized out> >+ u = <value optimized out> >+#28 0x0000003ecd66ebbd in function_call (func=<function at remote 0x1b40d70>, arg=(), kw={}) at Objects/funcobject.c:524 >+ result = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+ k = 0x7fafc00019d0 >+ nk = <value optimized out> >+ nd = 0 >+#29 0x0000003ecd644043 in PyObject_Call (func=<function at remote 0x1b40d70>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd66ea10 <function_call> >+#30 0x0000003ecd6dd280 in ext_do_call (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:4107 >+ kwdict = {} >+ nstar = <value optimized out> >+ callargs = () >+ stararg = () >+ result = 0x0 >+#31 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2493 >+ func = <function at remote 0x1b40d70> >+ na = <value optimized out> >+ nk = -733720496 >+ n = <value optimized out> >+ pfunc = 0x7fafc004c5c0 >+ sp = 0x7fafc004c5c8 >+ stack_pointer = <value optimized out> >+ next_instr = 0x185a4a6 "\001d" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = <function at remote 0x1b40d70> >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafc004c5b8 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x1856f30 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x185a494 "|" >+ names = () >+ consts = (None,) >+#32 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0x1856f30, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=1, kws=0x7fafc004cf20, kwcount=0, defs=0x0, defcount=0, closure=(<cell at remote 0x1b53fd8>,)) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafc004c5b8 >+ tstate = 0x21127d0 >+ x = <value optimized out> >+ u = <value optimized out> >+#33 0x0000003ecd66ebbd in function_call (func=<function at remote 0x1b3aa28>, arg=(<vmmAsyncJob(show_progress=False, topwin=<gtk.Window at remote 0x1b43690>, cancel_args=[<...>], _gobject_handles=[], _signal_id_map={}, cancel_job=None, window=<gtk.glade.XML at remote 0x1b43aa0>, _gobject_timeouts=[], config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b0>, _objects=['<vmmErrorDialog object at 0x1885460 (virtManager+error+vmmErrorDialog at 0xfe9080)>', '<vmmEngine object at 0x1acaaf0 (virtManager+engine+vmmEngine at 0xfe8920)>', '<vmmErrorDialog object at 0x1acacd0 (virtManager+error+vmmErrorDialog at 0xfe2000)>', '<vmmSystray object at 0x1acad20 (virtManager+systray+vmmSystray at 0xfe8e60)>', '<vmmErrorDialog object at 0x1acad70 (virtManager+error+vmmErrorDialog at 0xd9b120)>', '<vm...(truncated), kw={}) at Objects/funcobject.c:524 >+ result = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+ k = 0x7fafc004cf20 >+ nk = <value optimized out> >+ nd = 0 >+#34 0x0000003ecd644043 in PyObject_Call (func=<function at remote 0x1b3aa28>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd66ea10 <function_call> >+#35 0x0000003ecd6dd280 in ext_do_call (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:4107 >+ kwdict = {} >+ nstar = <value optimized out> >+ callargs = (<vmmAsyncJob(show_progress=False, topwin=<gtk.Window at remote 0x1b43690>, cancel_args=[<...>], _gobject_handles=[], _signal_id_map={}, cancel_job=None, window=<gtk.glade.XML at remote 0x1b43aa0>, _gobject_timeouts=[], config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b0>, _objects=['<vmmErrorDialog object at 0x1885460 (virtManager+error+vmmErrorDialog at 0xfe9080)>', '<vmmEngine object at 0x1acaaf0 (virtManager+engine+vmmEngine at 0xfe8920)>', '<vmmErrorDialog object at 0x1acacd0 (virtManager+error+vmmErrorDialog at 0xfe2000)>', '<vmmSystray object at 0x1acad20 (virtManager+systray+vmmSystray at 0xfe8e60)>', '<vmmErrorDialog object at 0x1acad70 (virtManager+error+vmmErrorDialog at 0xd9b120)>', '<vm...(truncated) >+ stararg = () >+ result = 0x0 >+#36 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2493 >+ func = <function at remote 0x1b3aa28> >+ na = <value optimized out> >+ nk = 34170256 >+ n = <value optimized out> >+ pfunc = 0x7fafc0042e70 >+ sp = 0x7fafc0042e78 >+ stack_pointer = <value optimized out> >+ next_instr = 0x177ee26 "\001Wni" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 0x0 >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafc0042e70 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x1856eb8 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x177ee14 "y\024" >+ names = ('Exception', 'isinstance', 'libvirt', 'libvirtError', 'can_cancel', 'job_canceled', 'set_error', 'str', 'join', 'traceback', 'format_exc') >+ consts = (None, '') >+#37 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0x1856eb8, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=2, kws=0x7fafc0048740, kwcount=0, defs=0x0, defcount=0, closure=0x0) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafc0042e70 >+ tstate = 0x21127d0 >+ x = <value optimized out> >+ u = <value optimized out> >+#38 0x0000003ecd66ebbd in function_call (func=<function at remote 0x185eb18>, arg=(<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<gtk.Window at remote 0x1b43690>, cancel_args=[<...>], _gobject_handles=[], _signal_id_map={}, cancel_job=None, window=<gtk.glade.XML at remote 0x1b43aa0>, _gobject_timeouts=[], config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b0>, _objects=['<vmmErrorDialog object at 0x1885460 (virtManager+error+vmmErrorDialog at 0xfe9080)>', '<vmmEngine object at 0x1acaaf0 (virtManager+engine+vmmEngine at 0xfe8920)>', '<vmmErrorDialog object at 0x1acacd0 (virtManager+error+vmmErrorDialog at 0xfe2000)>', '<vmmSystray object at 0x1acad20 (virtManager+systray+vmmSystray at 0xfe8e60)>', '<vmmErrorDialog object at 0x1acad70 (virtManager+error+vmm...(truncated), kw={}) at Objects/funcobject.c:524 >+ result = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+ k = 0x7fafc0048740 >+ nk = <value optimized out> >+ nd = 0 >+#39 0x0000003ecd644043 in PyObject_Call (func=<function at remote 0x185eb18>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd66ea10 <function_call> >+#40 0x0000003ecd6dd280 in ext_do_call (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:4107 >+ kwdict = {} >+ nstar = <value optimized out> >+ callargs = (<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<gtk.Window at remote 0x1b43690>, cancel_args=[<...>], _gobject_handles=[], _signal_id_map={}, cancel_job=None, window=<gtk.glade.XML at remote 0x1b43aa0>, _gobject_timeouts=[], config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b0>, _objects=['<vmmErrorDialog object at 0x1885460 (virtManager+error+vmmErrorDialog at 0xfe9080)>', '<vmmEngine object at 0x1acaaf0 (virtManager+engine+vmmEngine at 0xfe8920)>', '<vmmErrorDialog object at 0x1acacd0 (virtManager+error+vmmErrorDialog at 0xfe2000)>', '<vmmSystray object at 0x1acad20 (virtManager+systray+vmmSystray at 0xfe8e60)>', '<vmmErrorDialog object at 0x1acad70 (virtManager+error+vmm...(truncated) >+ stararg = (<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<gtk.Window at remote 0x1b43690>, cancel_args=[<...>], _gobject_handles=[], _signal_id_map={}, cancel_job=None, window=<gtk.glade.XML at remote 0x1b43aa0>, _gobject_timeouts=[], config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b0>, _objects=['<vmmErrorDialog object at 0x1885460 (virtManager+error+vmmErrorDialog at 0xfe9080)>', '<vmmEngine object at 0x1acaaf0 (virtManager+engine+vmmEngine at 0xfe8920)>', '<vmmErrorDialog object at 0x1acacd0 (virtManager+error+vmmErrorDialog at 0xfe2000)>', '<vmmSystray object at 0x1acad20 (virtManager+systray+vmmSystray at 0xfe8e60)>', '<vmmErrorDialog object at 0x1acad70 (virtManager+error+vmm...(truncated) >+ result = 0x0 >+#41 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2493 >+ func = <function at remote 0x185eb18> >+ na = <value optimized out> >+ nk = 28704064 >+ n = <value optimized out> >+ pfunc = 0x7fafb8000ee0 >+ sp = 0x7fafb8000ee8 >+ stack_pointer = <value optimized out> >+ next_instr = 0xb93236 "\001n\001" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = '_Thread__kwargs' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafb8000ee0 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0xb92990 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0xb93214 "z(" >+ names = ('_Thread__target', '_Thread__args', '_Thread__kwargs') >+ consts = (None,) >+#42 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0xb92990, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=1, kws=0x0, kwcount=0, defs=0x0, defcount=0, closure=0x0) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafb8000ee0 >+ tstate = 0x21127d0 >+ x = <value optimized out> >+ u = <value optimized out> >+#43 0x0000003ecd66eac0 in function_call (func=<function at remote 0xba50c8>, arg=(<asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__verbose=False, _Thread__args=[<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<...(truncated), kw=0x0) at Objects/funcobject.c:524 >+ result = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+ k = 0x0 >+ nk = 0 >+ nd = 0 >+#44 0x0000003ecd644043 in PyObject_Call (func=<function at remote 0xba50c8>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd66ea10 <function_call> >+#45 0x0000003ecd65941f in instancemethod_call (func=<function at remote 0xba50c8>, arg=(<asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__verbose=False, _Thread__args=[<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<...(truncated), kw=0x0) at Objects/classobject.c:2579 >+ self = <asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__verbose=False, _Thread__args=[<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<g...(truncated) >+ klass = <value optimized out> >+ result = <value optimized out> >+#46 0x0000003ecd644043 in PyObject_Call (func=<instancemethod at remote 0x1b65dc0>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd6592a0 <instancemethod_call> >+#47 0x0000003ecd6ddd84 in do_call (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:4012 >+ callargs = (<asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__verbose=False, _Thread__args=[<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<...(truncated) >+ kwdict = 0x0 >+ result = 0x0 >+#48 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3817 >+ func = <instancemethod at remote 0x1b65dc0> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x7fafc00492a0 >+ x = <value optimized out> >+#49 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x7fafc00492a8 >+ stack_pointer = <value optimized out> >+ next_instr = 0x185a3e3 "\001d" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'run' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafc00492a0 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x1856dc8 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x185a3d4 "t" >+ names = ('threading', 'Thread', 'run') >+ consts = (None,) >+#50 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0x7fafc0049298 >+ f = Frame 0x7fafc0049120, for file /usr/share/virt-manager/virtManager/asyncjob.py, line 40, in run (self=<asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__ver...(truncated) >+ tstate = 0x21127d0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#51 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0x185ec08> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x7fafb8000c78 >+ x = <value optimized out> >+#52 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x7fafb8000c80 >+ stack_pointer = <value optimized out> >+ next_instr = 0xbd5075 "\001Wn\r\001\004t\020" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'run' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafb8000c78 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0xb92af8 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0xbd4fc4 "z\343\001|" >+ names = ('_set_ident', '_Thread__started', 'set', '_active_limbo_lock', 'acquire', '_active', '_Thread__ident', '_limbo', 'release', '_note', '_trace_hook', '_sys', 'settrace', '_profile_hook', 'setprofile', 'run', 'SystemExit', 'stderr', 'write', 'name', '_format_exc', '_Thread__exc_info', '_Thread__stderr', 'tb_frame', 'f_code', 'co_filename', 'tb_lineno', 'co_name', 'tb_next', '_Thread__exc_clear', '__exit__', '__enter__', '_Thread__stop', '_get_ident') >+ consts = (None, '%s.__bootstrap(): thread started', '%s.__bootstrap(): registering trace hook', '%s.__bootstrap(): registering profile hook', '%s.__bootstrap(): raised SystemExit', '%s.__bootstrap(): unhandled exception', 'Exception in thread %s:\n%s\n', 'Exception in thread ', ' (most likely raised during interpreter shutdown):', 'Traceback (most recent call last):', ' File "%s", line %s, in %s', '%s: %s', '%s.__bootstrap(): normal return') >+#53 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0x7fafb8000c58 >+ f = Frame 0x7fafb8000ae0, for file /usr/lib64/python2.6/threading.py, line 532, in __bootstrap_inner (self=<asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__ve...(truncated) >+ tstate = 0x21127d0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#54 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0xba5230> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x7fafb8000a90 >+ x = <value optimized out> >+#55 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x7fafb8000a98 >+ stack_pointer = <value optimized out> >+ next_instr = 0x7fafcde9c678 "\001Wn&" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = '_Thread__bootstrap_inner' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafb8000a90 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0xb92a08 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x7fafcde9c66c "y\016" >+ names = ('_Thread__bootstrap_inner', '_Thread__daemonic', '_sys', 'None') >+ consts = (None,) >+#56 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0xb92a08, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=1, kws=0x0, kwcount=0, defs=0x0, defcount=0, closure=0x0) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x7fafb8000a90 >+ tstate = 0x21127d0 >+ x = <value optimized out> >+ u = <value optimized out> >+#57 0x0000003ecd66eac0 in function_call (func=<function at remote 0xba5140>, arg=(<asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__verbose=False, _Thread__args=[<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<...(truncated), kw=0x0) at Objects/funcobject.c:524 >+ result = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+ k = 0x0 >+ nk = 0 >+ nd = 0 >+#58 0x0000003ecd644043 in PyObject_Call (func=<function at remote 0xba5140>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd66ea10 <function_call> >+#59 0x0000003ecd65941f in instancemethod_call (func=<function at remote 0xba5140>, arg=(<asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__verbose=False, _Thread__args=[<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<...(truncated), kw=0x0) at Objects/classobject.c:2579 >+ self = <asyncJobWorker(_Thread__ident=140392928343808, _Thread__block=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0x209a030>, acquire=<built-in method acquire of thread.lock object at remote 0x209a030>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0x209a030>) at remote 0x1b63150>, _Thread__name='Thread-6', _Thread__daemonic=True, _Thread__started=<_Event(_Verbose__verbose=False, _Event__flag=True, _Event__cond=<_Condition(_Verbose__verbose=False, _Condition__lock=<thread.lock at remote 0xf95db0>, acquire=<built-in method acquire of thread.lock object at remote 0xf95db0>, _Condition__waiters=[], release=<built-in method release of thread.lock object at remote 0xf95db0>) at remote 0x1b636d0>) at remote 0x1b63690>, _Thread__stderr=<file at remote 0x7fafd445f1e0>, _Thread__target=<function at remote 0x185eb18>, _Thread__kwargs={}, _Verbose__verbose=False, _Thread__args=[<function at remote 0x1b3aa28>, <vmmAsyncJob(show_progress=False, topwin=<g...(truncated) >+ klass = <value optimized out> >+ result = <value optimized out> >+#60 0x0000003ecd644043 in PyObject_Call (func=<instancemethod at remote 0x1b547d0>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd6592a0 <instancemethod_call> >+#61 0x0000003ecd6d8aa3 in PyEval_CallObjectWithKeywords (func=<instancemethod at remote 0x1b547d0>, arg=(), kw=<value optimized out>) at Python/ceval.c:3663 >+ result = <value optimized out> >+#62 0x0000003ecd70b7ca in t_bootstrap (boot_raw=<value optimized out>) at Modules/threadmodule.c:428 >+ boot = 0x1fd5c50 >+ tstate = 0x21127d0 >+ res = <value optimized out> >+#63 0x0000003ec22077f1 in start_thread (arg=0x7fafc69f7700) at pthread_create.c:301 >+ __res = <value optimized out> >+ pd = 0x7fafc69f7700 >+ now = <value optimized out> >+ unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140392928343808, 167209284534519799, 140733760180032, 140392928344512, 0, 3, -212365398659315721, 157502522630850551}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} >+ not_first_call = <value optimized out> >+ pagesize_m1 = <value optimized out> >+ sp = <value optimized out> >+ freesize = <value optimized out> >+#64 0x0000003ec1ee592d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:115 >+No locals. >+ >+Thread 1 (Thread 0x7fafd4486700 (LWP 3575)): >+#0 0x0000003b26460e69 in validate_row (tree_view=0x1bac640, tree=0x7fafc004c960, node=0x1fe90c0, iter=0x7fff21c84380, path=<value optimized out>) at gtktreeview.c:5699 >+ column = <value optimized out> >+ list = 0x0 >+ first_column = <value optimized out> >+ last_column = <value optimized out> >+ height = 23 >+ horizontal_separator = 2 >+ vertical_separator = 0 >+ focus_line_width = 1 >+ depth = 1 >+ retval = <value optimized out> >+ is_separator = <value optimized out> >+ draw_vgrid_lines = 1 >+ draw_hgrid_lines = 0 >+ focus_pad = 1 >+ grid_line_width = 1 >+ wide_separators = 0 >+ separator_height = 0 >+#1 0x0000003b26462900 in validate_visible_area (tree_view=0x1bac640) at gtktreeview.c:5898 >+ tmppath = 0x207ca50 >+ tmpiter = {stamp = -388484977, user_data = 0x1feb640, user_data2 = 0x0, user_data3 = 0x0} >+ tmptree = 0x7fafc004c960 >+ tmpnode = 0x1fe90c0 >+ path = 0x2132e20 >+ above_path = 0x207f830 >+ iter = {stamp = -388484977, user_data = 0x20dd700, user_data2 = 0x0, user_data3 = 0x0} >+ tree = 0x7fafc004c960 >+ node = 0x1fd8b80 >+ need_redraw = 0 >+ size_changed = 0 >+ total_height = <value optimized out> >+ area_above = <value optimized out> >+ area_below = 161 >+ __PRETTY_FUNCTION__ = "validate_visible_area" >+#2 0x0000003b26462dbb in gtk_tree_view_bin_expose (widget=0x1bac640, event=0x7fff21c84c60) at gtktreeview.c:4253 >+ tree_view = 0x1bac640 >+ path = <value optimized out> >+ tree = <value optimized out> >+ list = <value optimized out> >+ node = <value optimized out> >+ cursor = 0x0 >+ cursor_tree = 0x0 >+ drag_highlight = 0x0 >+ drag_highlight_tree = 0x0 >+ iter = {stamp = 520, user_data = 0x7fff21c845f0, user_data2 = 0x206a090, user_data3 = 0x7fff21c845f0} >+ y_offset = <value optimized out> >+ cell_offset = <value optimized out> >+ max_height = <value optimized out> >+ depth = <value optimized out> >+ background_area = {x = 566773376, y = 32767, width = 642222961, height = 59} >+ cell_area = {x = 566773376, y = 32767, width = 33988752, height = 0} >+ flags = <value optimized out> >+ highlight_x = <value optimized out> >+ expander_cell_width = <value optimized out> >+ bin_window_width = <value optimized out> >+ bin_window_height = <value optimized out> >+ cursor_path = <value optimized out> >+ drag_dest_path = <value optimized out> >+ first_column = <value optimized out> >+ last_column = <value optimized out> >+ vertical_separator = <value optimized out> >+ horizontal_separator = <value optimized out> >+ focus_line_width = <value optimized out> >+ allow_rules = <value optimized out> >+ has_special_cell = <value optimized out> >+ rtl = 0 >+ n_visible_columns = <value optimized out> >+ pointer_x = <value optimized out> >+ pointer_y = <value optimized out> >+ grid_line_width = <value optimized out> >+ got_pointer = 0 >+ row_ending_details = <value optimized out> >+ draw_vgrid_lines = <value optimized out> >+ draw_hgrid_lines = <value optimized out> >+ __PRETTY_FUNCTION__ = "gtk_tree_view_bin_expose" >+#3 0x0000003b26464f8b in gtk_tree_view_expose (widget=0x1bac640, event=0x7fff21c84c60) at gtktreeview.c:4955 >+ retval = <value optimized out> >+ tmp_list = <value optimized out> >+ tree_view = 0x1bac640 >+#4 0x0000003b26353ef3 in _gtk_marshal_BOOLEAN__BOXED (closure=0x10b4fa0, return_value=0x7fff21c84920, n_param_values=<value optimized out>, param_values=0x1fff750, invocation_hint=<value optimized out>, marshal_data=<value optimized out>) at gtkmarshalers.c:84 >+ callback = 0x3b26464e70 <gtk_tree_view_expose> >+ cc = 0x10b4fa0 >+ data1 = 0x1bac640 >+ data2 = 0xd8e010 >+ v_return = <value optimized out> >+ __PRETTY_FUNCTION__ = "_gtk_marshal_BOOLEAN__BOXED" >+#5 0x0000003ec420bb3e in IA__g_closure_invoke (closure=0x10b4fa0, return_value=0x7fff21c84920, n_param_values=2, param_values=0x1fff750, invocation_hint=0x7fff21c848e0) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#6 0x0000003ec42209ed in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1bac640, emission_return=0x7fff21c84a70, instance_and_params=0x1fff750) at gsignal.c:3285 >+ accumulator = 0x10b5090 >+ emission = {next = 0x7fff21c85570, instance = 0x1bac640, ihint = {signal_id = 41, detail = 0, run_type = G_SIGNAL_RUN_LAST}, state = EMISSION_RUN, chain_type = 15513296} >+ class_closure = 0x10b4fa0 >+ handler_list = 0x0 >+ return_accu = 0x7fff21c84920 >+ accu = {g_type = 20, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 41 >+ max_sequential_handler_number = 3745 >+ return_value_altered = 0 >+#7 0x0000003ec4221f4a in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c84ad0) at gsignal.c:2990 >+ return_value = {g_type = 20, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ error = 0x0 >+ rtype = 20 >+ static_scope = 0 >+ instance_and_params = 0x1fff750 >+ signal_return_type = 20 >+ param_values = 0x1fff768 >+ node = 0x10b5010 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#8 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c84bb0, reg_save_area = 0x7fff21c84af0}} >+#9 0x0000003b26476b2f in gtk_widget_event_internal (widget=0x1bac640, event=0x7fff21c84c60) at gtkwidget.c:4775 >+ signal_num = <value optimized out> >+ return_val = 0 >+#10 0x0000003b2634c0af in IA__gtk_main_do_event (event=0x7fff21c84c60) at gtkmain.c:1571 >+ event_widget = 0x1bac640 >+ grab_widget = 0x1bac640 >+ window_group = 0x1b0fec0 >+ rewritten_event = <value optimized out> >+ tmp_list = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__gtk_main_do_event" >+#11 0x0000003b26a4317a in _gdk_window_process_updates_recurse (window=0x20e8150, expose_region=0x2078c60) at gdkwindow.c:5172 >+ event = {type = GDK_EXPOSE, any = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000'}, expose = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', area = {x = 0, y = 0, width = 506, height = 174}, region = 0x2078c60, count = 0}, no_expose = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000'}, visibility = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', state = GDK_VISIBILITY_UNOBSCURED}, motion = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', time = 0, x = 1.0737298702284278e-311, y = 8.5967422376376899e-322, axes = 0x2078c60, state = 0, is_hint = 0, device = 0x3b26a32bf0, x_root = 1.6429777562559814e-316, y_root = 0}, button = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', time = 0, x = 1.0737298702284278e-311, y = 8.5967422376376899e-322, axes = 0x2078c60, state = 0, button = 0, device = 0x3b26a32bf0, x_root = 1.6429777562559814e-316, y_root = 0}, scroll = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', time = 0, x = 1.0737298702284278e-311, y = 8.5967422376376899e-322, state = 34049120, direction = GDK_SCROLL_UP, device = 0x0, x_root = 1.2551801876546789e-312, y_root = 1.6429777562559814e-316}, key = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', time = 0, state = 0, keyval = 506, length = 174, string = 0x2078c60 "\002", hardware_keycode = 0, group = 0 '\000', is_modifier = 0}, crossing = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', subwindow = 0x1fa00000000, time = 174, x = 1.6822500463126105e-316, y = 0, x_root = 1.2551801876546789e-312, y_root = 1.6429777562559814e-316, mode = GDK_CROSSING_NORMAL, detail = GDK_NOTIFY_ANCESTOR, focus = 33991888, state = 0}, focus_change = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', in = 0}, configure = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', x = 0, y = 0, width = 506, height = 174}, property = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', atom = 0x1fa00000000, time = 174, state = 0}, selection = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', selection = 0x1fa00000000, target = 0xae, property = 0x2078c60, time = 0, requestor = 0}, owner_change = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', owner = 0, reason = GDK_OWNER_CHANGE_NEW_OWNER, selection = 0xae, time = 34049120, selection_time = 0}, proximity = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', time = 0, device = 0x1fa00000000}, client = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', message_type = 0x1fa00000000, data_format = 174, data = {b = "`\214\a\002", '\000' <repeats 12 times>"\360, +\243&", s = {-29600, 519, 0, 0, 0, 0, 0, 0, 11248, 9891}, l = {34049120, 0, 254051298288, 33254240, 0}}}, dnd = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', context = 0x1fa00000000, time = 174, x_root = 0, y_root = 0}, window_state = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', changed_mask = 0, new_window_state = 0}, setting = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', action = GDK_SETTING_ACTION_NEW, name = 0x1fa00000000 <Address 0x1fa00000000 out of bounds>}, grab_broken = {type = GDK_EXPOSE, window = 0x20e8150, send_event = 0 '\000', keyboard = 0, implicit = 0, grab_window = 0xae}} >+ private = 0x20e8150 >+ child = <value optimized out> >+ child_region = <value optimized out> >+ r = {x = 199, y = 0, width = -1012571087, height = 62} >+ l = <value optimized out> >+ children = 0x0 >+#12 0x0000003b26a43127 in _gdk_window_process_updates_recurse (window=0x20e8260, expose_region=0x2178b80) at gdkwindow.c:5145 >+ private = 0x20e8260 >+ child = 0x20e8150 >+ child_region = 0x2078c60 >+ r = {x = 0, y = 25, width = 596, height = 174} >+ l = 0x20e1080 >+ children = 0x21992e0 >+#13 0x0000003b26a43127 in _gdk_window_process_updates_recurse (window=0x1f5e2d0, expose_region=0x2164600) at gdkwindow.c:5145 >+ private = 0x1f5e2d0 >+ child = 0x20e8260 >+ child_region = 0x2178b80 >+ r = {x = 228, y = 227, width = 506, height = 199} >+ l = 0x20e92a0 >+ children = 0x2175780 >+#14 0x0000003b26a3fc3b in gdk_window_process_updates_internal (window=0x1f5e2d0) at gdkwindow.c:5331 >+ expose_region = 0x2164600 >+ update_area = 0x2143b90 >+ private = 0x1f5e2d0 >+ impl_iface = <value optimized out> >+ save_region = 0 >+ clip_box = {x = 228, y = 227, width = 506, height = 199} >+#15 0x0000003b26a4462e in IA__gdk_window_process_updates (window=0x20e7ad0, update_children=1) at gdkwindow.c:5505 >+ private = 0x20e7ad0 >+ impl_window = 0x1f5e2d0 >+ __PRETTY_FUNCTION__ = "IA__gdk_window_process_updates" >+#16 0x0000003b26a445de in IA__gdk_window_process_updates (window=0x20e7be0, update_children=<value optimized out>) at gdkwindow.c:5521 >+ node = 0x1ff9020 >+ children = 0x217a2c0 >+ private = 0x20e7be0 >+ impl_window = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__gdk_window_process_updates" >+#17 0x0000003b2644e9e8 in gtk_tree_view_adjustment_changed (adjustment=<value optimized out>, tree_view=0x1bac640) at gtktreeview.c:10538 >+ dy = -10 >+#18 0x0000003ec420bb3e in IA__g_closure_invoke (closure=0x1ffbd60, return_value=0x0, n_param_values=1, param_values=0x20fa780, invocation_hint=0x7fff21c850c0) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#19 0x0000003ec4220e23 in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x200fd90, emission_return=0x0, instance_and_params=0x20fa780) at gsignal.c:3247 >+ tmp = <value optimized out> >+ handler = 0x1fc5d60 >+ accumulator = 0x0 >+ emission = {next = 0x0, instance = 0x200fd90, ihint = {signal_id = 312, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 4} >+ class_closure = 0x1ba6a50 >+ handler_list = 0x200d010 >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 312 >+ max_sequential_handler_number = 3745 >+ return_value_altered = 1 >+#20 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c852b0) at gsignal.c:2980 >+ instance_and_params = 0x20fa780 >+ signal_return_type = 4 >+ param_values = 0x20fa798 >+ node = 0x1ba6ac0 >+ i = <value optimized out> >+ n_params = 0 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#21 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 24, fp_offset = 48, overflow_arg_area = 0x7fff21c85390, reg_save_area = 0x7fff21c852d0}} >+#22 0x0000003b2627649a in IA__gtk_adjustment_value_changed (adjustment=0x200fd90) at gtkadjustment.c:668 >+ __PRETTY_FUNCTION__ = "IA__gtk_adjustment_value_changed" >+#23 0x0000003b2644e81e in gtk_tree_view_top_row_to_dy (tree_view=0x1bac640) at gtktreeview.c:6479 >+ path = <value optimized out> >+ tree = 0x7fafc004c960 >+ node = 0x1ff4ec0 >+ new_dy = <value optimized out> >+#24 0x0000003b26459c6c in gtk_tree_view_size_allocate (widget=0x1bac640, allocation=0x7fff21c85860) at gtktreeview.c:2411 >+ tree_view = 0x1bac640 >+ tmp_list = 0x0 >+ width_changed = 1 >+ old_width = <value optimized out> >+#25 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1ff4a90, invocation_hint=0x7fff21c85580) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#26 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1bac640, emission_return=0x0, instance_and_params=0x1ff4a90) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c85a60, instance = 0x1bac640, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15513296} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#27 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c85770) at gsignal.c:2980 >+ instance_and_params = 0x1ff4a90 >+ signal_return_type = 4 >+ param_values = 0x1ff4aa8 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#28 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c85850, reg_save_area = 0x7fff21c85790}} >+#29 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1bac640, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 228, y = 227, width = 506, height = 199} >+ old_allocation = {x = 228, y = 227, width = 506, height = 199} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#30 0x0000003b263bdb93 in gtk_scrolled_window_size_allocate (widget=0x1fc6be0, allocation=0x7fff21c85d50) at gtkscrolledwindow.c:1436 >+ previous_hvis = 1 >+ previous_vvis = 0 >+ count = <value optimized out> >+ scrolled_window = 0x1fc6be0 >+ priv = 0x1fc6c70 >+ bin = 0x1fc6be0 >+ relative_allocation = {x = 1, y = 1, width = 506, height = 199} >+ child_allocation = {x = 228, y = 227, width = 506, height = 199} >+ scrollbars_within_bevel = <value optimized out> >+ scrollbar_spacing = 3 >+ __PRETTY_FUNCTION__ = "gtk_scrolled_window_size_allocate" >+#31 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1febd20, invocation_hint=0x7fff21c85a70) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#32 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1fc6be0, emission_return=0x0, instance_and_params=0x1febd20) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c85f90, instance = 0x1fc6be0, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15844928} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#33 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c85c60) at gsignal.c:2980 >+ instance_and_params = 0x1febd20 >+ signal_return_type = 4 >+ param_values = 0x1febd38 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#34 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c85d40, reg_save_area = 0x7fff21c85c80}} >+#35 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1fc6be0, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 227, y = 226, width = 508, height = 219} >+ old_allocation = {x = 227, y = 226, width = 508, height = 219} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#36 0x0000003b2628405d in gtk_box_size_allocate (widget=0x0, allocation=0x7fffffffff75) at gtkbox.c:500 >+ box = 0x2009a60 >+ private = 0x2009ae0 >+ child = 0x2052de0 >+ children = 0x0 >+ child_allocation = {x = 227, y = 226, width = 508, height = 219} >+ nvis_children = 2 >+ nexpand_children = 0 >+ child_width = 62 >+ child_height = 219 >+ width = -139 >+ height = 0 >+ extra = <value optimized out> >+ x = 106 >+ y = 226 >+ direction = GTK_TEXT_DIR_LTR >+#37 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x2112c10, invocation_hint=0x7fff21c85fa0) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#38 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x2009a60, emission_return=0x0, instance_and_params=0x2112c10) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c864c0, instance = 0x2009a60, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15889808} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#39 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c86190) at gsignal.c:2980 >+ instance_and_params = 0x2112c10 >+ signal_return_type = 4 >+ param_values = 0x2112c28 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#40 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c86270, reg_save_area = 0x7fff21c861b0}} >+#41 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x2009a60, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 227, y = 189, width = 508, height = 256} >+ old_allocation = {x = 227, y = 189, width = 508, height = 256} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#42 0x0000003b2628405d in gtk_box_size_allocate (widget=0x0, allocation=0x7fffffffff75) at gtkbox.c:500 >+ box = 0x1f5b040 >+ private = 0x1f5b0c0 >+ child = 0x1feffe0 >+ children = 0x0 >+ child_allocation = {x = 227, y = 189, width = 508, height = 256} >+ nvis_children = 2 >+ nexpand_children = 0 >+ child_width = 103 >+ child_height = 256 >+ width = -139 >+ height = 0 >+ extra = <value optimized out> >+ x = 325 >+ y = 189 >+ direction = GTK_TEXT_DIR_LTR >+#43 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1ff7890, invocation_hint=0x7fff21c864d0) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#44 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1f5b040, emission_return=0x0, instance_and_params=0x1ff7890) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c86990, instance = 0x1f5b040, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15889808} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#45 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c866c0) at gsignal.c:2980 >+ instance_and_params = 0x1ff7890 >+ signal_return_type = 4 >+ param_values = 0x1ff78a8 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#46 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c867a0, reg_save_area = 0x7fff21c866e0}} >+#47 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1f5b040, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 227, y = 69, width = 508, height = 376} >+ old_allocation = {x = 227, y = 69, width = 508, height = 376} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#48 0x0000003b26278158 in gtk_alignment_size_allocate (widget=0x1fc6e60, allocation=0x7fff21c86c80) at gtkalignment.c:493 >+ alignment = 0x1fc6e60 >+ bin = 0x1fc6e60 >+ child_allocation = {x = 227, y = 69, width = 508, height = 376} >+ child_requisition = {width = 319, height = 237} >+ width = <value optimized out> >+ height = <value optimized out> >+ border_width = 0 >+ padding_horizontal = <value optimized out> >+ padding_vertical = <value optimized out> >+ priv = <value optimized out> >+#49 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1fe4160, invocation_hint=0x7fff21c869a0) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#50 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1fc6e60, emission_return=0x0, instance_and_params=0x1fe4160) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c86e30, instance = 0x1fc6e60, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15867632} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#51 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c86b90) at gsignal.c:2980 >+ instance_and_params = 0x1fe4160 >+ signal_return_type = 4 >+ param_values = 0x1fe4178 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#52 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c86c70, reg_save_area = 0x7fff21c86bb0}} >+#53 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1fc6e60, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 221, y = 69, width = 514, height = 376} >+ old_allocation = {x = 221, y = 69, width = 514, height = 376} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#54 0x0000003b26378feb in gtk_notebook_size_allocate (widget=<value optimized out>, allocation=<value optimized out>) at gtknotebook.c:2134 >+ border_width = <value optimized out> >+ page = 0x2008e80 >+ child_allocation = {x = 221, y = 69, width = 514, height = 376} >+ children = 0x200cec0 >+ notebook = 0x1b9c6c0 >+ tab_pos = 2 >+#55 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1fd8a90, invocation_hint=0x7fff21c86e40) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#56 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1b9c6c0, emission_return=0x0, instance_and_params=0x1fd8a90) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c87330, instance = 0x1b9c6c0, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15805600} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#57 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c87030) at gsignal.c:2980 >+ instance_and_params = 0x1fd8a90 >+ signal_return_type = 4 >+ param_values = 0x1fd8aa8 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#58 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c87110, reg_save_area = 0x7fff21c87050}} >+#59 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1b9c6c0, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 221, y = 69, width = 514, height = 376} >+ old_allocation = {x = 221, y = 69, width = 514, height = 376} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#60 0x0000003b26382334 in gtk_paned_size_allocate (widget=0x1c65e70, allocation=0x7fff21c87620) at gtkpaned.c:946 >+ child1_requisition = {width = 154, height = 62} >+ child2_allocation = {x = 221, y = 69, width = 514, height = 376} >+ child2_requisition = {width = 325, height = 237} >+ child1_allocation = {x = 15, y = 69, width = 200, height = 376} >+ old_handle_pos = {x = 215, y = 69, width = 6, height = 376} >+ handle_size = 6 >+ paned = 0x1c65e70 >+ border_width = 3 >+#61 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1fd8660, invocation_hint=0x7fff21c87340) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#62 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1c65e70, emission_return=0x0, instance_and_params=0x1fd8660) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c87860, instance = 0x1c65e70, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15805008} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#63 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c87530) at gsignal.c:2980 >+ instance_and_params = 0x1fd8660 >+ signal_return_type = 4 >+ param_values = 0x1fd8678 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#64 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c87610, reg_save_area = 0x7fff21c87550}} >+#65 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1c65e70, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 12, y = 66, width = 726, height = 382} >+ old_allocation = {x = 12, y = 66, width = 726, height = 382} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#66 0x0000003b2628405d in gtk_box_size_allocate (widget=0x0, allocation=0x7fffffffff75) at gtkbox.c:500 >+ box = 0x10cbc60 >+ private = 0x10cbce0 >+ child = 0x208e240 >+ children = 0x200ca80 >+ child_allocation = {x = 12, y = 66, width = 726, height = 382} >+ nvis_children = 2 >+ nexpand_children = 0 >+ child_width = 491 >+ child_height = 382 >+ width = -139 >+ height = 0 >+ extra = <value optimized out> >+ x = 0 >+ y = 66 >+ direction = GTK_TEXT_DIR_LTR >+#67 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1ff2f00, invocation_hint=0x7fff21c87870) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#68 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x10cbc60, emission_return=0x0, instance_and_params=0x1ff2f00) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c87d00, instance = 0x10cbc60, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15889808} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#69 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c87a60) at gsignal.c:2980 >+ instance_and_params = 0x1ff2f00 >+ signal_return_type = 4 >+ param_values = 0x1ff2f18 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#70 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c87b40, reg_save_area = 0x7fff21c87a80}} >+#71 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x10cbc60, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 9, y = 63, width = 732, height = 428} >+ old_allocation = {x = 9, y = 63, width = 732, height = 428} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#72 0x0000003b26378feb in gtk_notebook_size_allocate (widget=<value optimized out>, allocation=<value optimized out>) at gtknotebook.c:2134 >+ border_width = <value optimized out> >+ page = 0x20064a0 >+ child_allocation = {x = 9, y = 63, width = 732, height = 428} >+ children = 0x207f020 >+ notebook = 0x1b9cb40 >+ tab_pos = 2 >+#73 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x1fe9790, invocation_hint=0x7fff21c87d10) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#74 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1b9cb40, emission_return=0x0, instance_and_params=0x1fe9790) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c88230, instance = 0x1b9cb40, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15805600} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#75 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c87f00) at gsignal.c:2980 >+ instance_and_params = 0x1fe9790 >+ signal_return_type = 4 >+ param_values = 0x1fe97a8 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#76 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c87fe0, reg_save_area = 0x7fff21c87f20}} >+#77 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1b9cb40, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 0, y = 25, width = 750, height = 475} >+ old_allocation = {x = 0, y = 25, width = 750, height = 475} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#78 0x0000003b2628405d in gtk_box_size_allocate (widget=0x0, allocation=0x7fffffffffc1) at gtkbox.c:500 >+ box = 0x1baf720 >+ private = 0x1baf7a0 >+ child = 0x1f8ff40 >+ children = 0x0 >+ child_allocation = {x = 0, y = 25, width = 750, height = 475} >+ nvis_children = 2 >+ nexpand_children = 0 >+ child_width = 515 >+ child_height = 475 >+ width = -63 >+ height = 0 >+ extra = <value optimized out> >+ x = 37 >+ y = 25 >+ direction = GTK_TEXT_DIR_LTR >+#79 0x0000003ec420ba89 in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x214b490, invocation_hint=0x7fff21c88240) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = 1 >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#80 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1baf720, emission_return=0x0, instance_and_params=0x214b490) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c886d0, instance = 0x1baf720, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15889808} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#81 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c88430) at gsignal.c:2980 >+ instance_and_params = 0x214b490 >+ signal_return_type = 4 >+ param_values = 0x214b4a8 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#82 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c88510, reg_save_area = 0x7fff21c88450}} >+#83 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1baf720, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 0, y = 0, width = 750, height = 500} >+ old_allocation = {x = 0, y = 0, width = 750, height = 500} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#84 0x0000003b2649264d in gtk_window_size_allocate (widget=0x1f5e600, allocation=0x7fff21c889c0) at gtkwindow.c:4941 >+ window = 0x1f5e600 >+ child_allocation = {x = 0, y = 0, width = 750, height = 500} >+#85 0x0000003ec420bb3e in IA__g_closure_invoke (closure=0x10cd950, return_value=0x0, n_param_values=2, param_values=0x206ad30, invocation_hint=0x7fff21c886e0) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#86 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1f5e600, emission_return=0x0, instance_and_params=0x206ad30) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c88c50, instance = 0x1f5e600, ihint = {signal_id = 19, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 14214640} >+ class_closure = 0x10cd950 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 19 >+ max_sequential_handler_number = 3745 >+ return_value_altered = <value optimized out> >+#87 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c888d0) at gsignal.c:2980 >+ instance_and_params = 0x206ad30 >+ signal_return_type = 4 >+ param_values = 0x206ad48 >+ node = 0x10cd9c0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#88 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c889b0, reg_save_area = 0x7fff21c888f0}} >+#89 0x0000003b2647ee8f in IA__gtk_widget_size_allocate (widget=0x1f5e600, allocation=<value optimized out>) at gtkwidget.c:3895 >+ aux_info = <value optimized out> >+ real_allocation = {x = 0, y = 0, width = 750, height = 500} >+ old_allocation = {x = 0, y = 0, width = 750, height = 500} >+ alloc_needed = 1 >+ size_changed = 0 >+ position_changed = 0 >+ __PRETTY_FUNCTION__ = "IA__gtk_widget_size_allocate" >+#90 0x0000003b26492c06 in gtk_window_move_resize (container=<value optimized out>) at gtkwindow.c:6352 >+ new_flags = 66 >+ widget = 0x1f5e600 >+ info = 0x1e8de20 >+ new_geometry = {min_width = 515, min_height = 437, max_width = 0, max_height = 0, base_width = 0, base_height = 0, width_inc = 0, height_inc = 0, min_aspect = 0, max_aspect = 0, win_gravity = GDK_GRAVITY_NORTH_WEST} >+ new_request = {x = 0, y = 0, width = 750, height = 500} >+ configure_request_pos_changed = <value optimized out> >+ hints_changed = <value optimized out> >+ container = 0x1f5e600 >+ configure_request_size_changed = 0 >+#91 gtk_window_check_resize (container=<value optimized out>) at gtkwindow.c:5358 >+ window = 0x1f5e600 >+#92 0x0000003ec420bb3e in IA__g_closure_invoke (closure=0x10d94c0, return_value=0x0, n_param_values=1, param_values=0x1bee820, invocation_hint=0x7fff21c88c60) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#93 0x0000003ec42209ed in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1f5e600, emission_return=0x0, instance_and_params=0x1bee820) at gsignal.c:3285 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c89e40, instance = 0x1f5e600, ihint = {signal_id = 82, detail = 0, run_type = G_SIGNAL_RUN_LAST}, state = EMISSION_RUN, chain_type = 14214640} >+ class_closure = 0x10d94c0 >+ handler_list = 0x0 >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 82 >+ max_sequential_handler_number = 3745 >+ return_value_altered = 0 >+#94 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c88e50) at gsignal.c:2980 >+ instance_and_params = 0x1bee820 >+ signal_return_type = 4 >+ param_values = 0x1bee838 >+ node = 0x10d9510 >+ i = <value optimized out> >+ n_params = 0 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#95 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 24, fp_offset = 48, overflow_arg_area = 0x7fff21c88f30, reg_save_area = 0x7fff21c88e70}} >+#96 0x0000003b262ba100 in gtk_container_idle_sizer (data=<value optimized out>) at gtkcontainer.c:1350 >+ slist = <value optimized out> >+ widget = 0x1f5e600 >+#97 0x0000003b26a1d396 in gdk_threads_dispatch (data=0x1e796e0) at gdk.c:506 >+ dispatch = 0x1e796e0 >+ ret = 0 >+#98 0x0000003ec3a38f0e in g_main_dispatch (context=0x10b1ce0) at gmain.c:1960 >+ dispatch = 0x3ec3a37070 <g_idle_dispatch> >+ was_in_call = 0 >+ user_data = 0x1e796e0 >+ callback = 0x3b26a1d340 <gdk_threads_dispatch> >+ cb_funcs = 0x3ec3ce4970 >+ cb_data = 0x1d2bdc0 >+ current_source_link = {data = 0x20fb660, next = 0x7fff21c8aaa0} >+ need_destroy = <value optimized out> >+ source = 0x20fb660 >+ current = 0x11143c0 >+ i = <value optimized out> >+#99 IA__g_main_context_dispatch (context=0x10b1ce0) at gmain.c:2513 >+No locals. >+#100 0x0000003ec3a3c938 in g_main_context_iterate (context=0x10b1ce0, block=1, dispatch=1, self=<value optimized out>) at gmain.c:2591 >+ max_priority = 110 >+ timeout = 0 >+ some_ready = 1 >+ nfds = 11 >+ allocated_nfds = <value optimized out> >+ fds = <value optimized out> >+ __PRETTY_FUNCTION__ = "g_main_context_iterate" >+#101 0x0000003ec3a3cd55 in IA__g_main_loop_run (loop=0x211ec90) at gmain.c:2799 >+ self = 0x10bcf40 >+ __PRETTY_FUNCTION__ = "IA__g_main_loop_run" >+#102 0x0000003b2634c2c7 in IA__gtk_main () at gtkmain.c:1218 >+ tmp_list = <value optimized out> >+ functions = 0x0 >+ init = <value optimized out> >+ loop = 0x211ec90 >+#103 0x00007fafcbc1e666 in _wrap_gtk_main (self=<value optimized out>) at ./gtk.override:1241 >+ _save = 0xa7a0a0 >+ main_watch = 0x1f540d0 >+#104 0x0000003ecd6de726 in call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3778 >+ meth = <value optimized out> >+ self = <value optimized out> >+ flags = <value optimized out> >+ tstate = <value optimized out> >+ func = <built-in function main> >+ w = <value optimized out> >+ na = 0 >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x2179448 >+ x = <value optimized out> >+#105 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x2179450 >+ stack_pointer = 0x2179450 >+ next_instr = 0x183df67 "\001n\016" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'main' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x2179448 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x185e288 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x183dee4 "|" >+ names = ('safe_timeout_add', 'exit_if_necessary', 'show_progress', 'topwin', 'present', 'cancel_job', 'window', 'set_cursor', 'gtk', 'gdk', 'Cursor', 'WATCH', 'run_main', 'bg_thread', 'start', 'main', 'run', 'gobject', 'source_remove', 'isAlive', 'logging', 'debug', 'True', 'destroy', 'cleanup', '_get_error') >+ consts = (None, 100, 0, 'Forcing main_quit from async job.', 'force_exit') >+#106 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0x2179438 >+ f = Frame 0x21792c0, for file /usr/share/virt-manager/virtManager/asyncjob.py, line 148, in run (self=<vmmAsyncJob(show_progress=False, topwin=<gtk.Window at remote 0x1b43690>, cancel_args=[<...>], _gobject_handles=[], _signal_id_map={}, cancel_job=None, window=<gtk.glade.XML at remote 0x1b43aa0>, _gobject_timeouts=[], config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b0>, _objects=['<vmmErrorDialog object at 0x1885460 (virtManager+error+vmmErrorDialog at 0xfe9080)>', '<vmmEngine object at 0x1acaaf0 (virtManager+engine+vmmEngine at 0xfe8920)>', '<vmmErrorDialog object at 0x1acacd0 (virtManager+error+vmmErrorDialog at 0xfe2000)>', '<vmmSystray object at 0x1acad20 (virtManager+systray+vmmSystray at 0xfe8e6...(truncated) >+ tstate = 0xa7a0a0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#107 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0x185eed8> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x1d806d8 >+ x = <value optimized out> >+#108 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x1d806e0 >+ stack_pointer = <value optimized out> >+ next_instr = 0x1768c68 "\\\002" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'run' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1d806d0 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x185e0a8 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x1768c0c "\210" >+ names = ('vmmAsyncJob', 'topwin', 'config', 'support_threading', 'run', 'None', 'err', 'show_err') >+ consts = ("\n @show_progress: Whether to actually show a progress dialog\n @simplecb: If true, build a callback wrapper that ignores the asyncjob\n param that's passed to every cb by default\n ", <code at remote 0x1856f30>, 'show_progress', 'run_main', None, ': ', 'details') >+#109 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0x185e0a8, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=8, kws=0x1fb9c08, kwcount=0, defs=0x0, defcount=0, closure=0x0) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1d806d0 >+ tstate = 0xa7a0a0 >+ x = <value optimized out> >+ u = <value optimized out> >+#110 0x0000003ecd6de8b4 in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3890 >+ co = <value optimized out> >+ nd = <value optimized out> >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#111 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0x185ec80> >+ w = <value optimized out> >+ na = 8 >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x1fb9bc0 >+ x = <value optimized out> >+#112 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x1fb9c08 >+ stack_pointer = <value optimized out> >+ next_instr = 0x1852fc2 "\001d" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'False' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1fb9bc0 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x185e198 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x1852fa4 "t" >+ names = ('_simple_async', 'False') >+ consts = (None, '') >+#113 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0x185e198, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=4, kws=0x1c93a50, kwcount=0, defs=0x185ad68, defcount=1, closure=0x0) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1fb9bc0 >+ tstate = 0xa7a0a0 >+ x = <value optimized out> >+ u = <value optimized out> >+#114 0x0000003ecd6de8b4 in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3890 >+ co = <value optimized out> >+ nd = <value optimized out> >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x185ad68 >+#115 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0x185ede8> >+ w = <value optimized out> >+ na = 4 >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0x1c93a28 >+ x = <value optimized out> >+#116 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0x1c93a50 >+ stack_pointer = <value optimized out> >+ next_instr = 0x1768efe "\001d" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'MRG-2.1-RHEL-5-x86_64-20111026.0.iso' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1c93a18 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x186fb70 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0x1768e64 "\210\001" >+ names = ('current_vol', 'None', 'err', 'yes_no', '_', 'get_name', 'logging', 'debug', 'vmmAsyncJob', 'simple_async_noshow') >+ consts = (None, 'Are you sure you want to permanently delete the volume %s?', <code at remote 0x186faf8>, "Deleting volume '%s'", "Error refreshing volume '%s'") >+#117 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0x186fb70, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=2, kws=0x0, kwcount=0, defs=0x0, defcount=0, closure=0x0) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0x1c93a18 >+ tstate = 0xa7a0a0 >+ x = <value optimized out> >+ u = <value optimized out> >+#118 0x0000003ecd66eac0 in function_call (func=<function at remote 0x19a3320>, arg=(<vmmHost(topwin=<gtk.Window at remote 0x1b650f0>, memory_usage_graph=<Sparkline(num_sets=1, reversed=False, rgb=[], filled=True, _data_array=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, <float at remote 0x1ead628>, <float at remote 0x1f37768>, <float at remote 0x1f37960>, <float at remote 0x20ebbf0>, <float at remote 0x20ebc08>, <float at remote 0x1f376f0>, <float at remote 0x1f37a20>, <float at remote 0x1ead418>, <float at remote 0x15c6978>, <float at remote 0x1ead3a0>, <float at remote 0x1f376c0>]) at remote 0x1b54870>, gladefile='/usr/share/virt-manager/vmm-host.glade', addinterface=None, addpool=None, conn=<vmmConnection(vmm=<virConnect(_o=<PyCObject at remote 0x7fafd4481ee0>) at remote 0x1b3f9e0>, _support_dict={1003: True...(truncated), kw=0x0) at Objects/funcobject.c:524 >+ result = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+ k = 0x0 >+ nk = 0 >+ nd = 0 >+#119 0x0000003ecd644043 in PyObject_Call (func=<function at remote 0x19a3320>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd66ea10 <function_call> >+#120 0x0000003ecd65941f in instancemethod_call (func=<function at remote 0x19a3320>, arg=(<vmmHost(topwin=<gtk.Window at remote 0x1b650f0>, memory_usage_graph=<Sparkline(num_sets=1, reversed=False, rgb=[], filled=True, _data_array=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, <float at remote 0x1ead628>, <float at remote 0x1f37768>, <float at remote 0x1f37960>, <float at remote 0x20ebbf0>, <float at remote 0x20ebc08>, <float at remote 0x1f376f0>, <float at remote 0x1f37a20>, <float at remote 0x1ead418>, <float at remote 0x15c6978>, <float at remote 0x1ead3a0>, <float at remote 0x1f376c0>]) at remote 0x1b54870>, gladefile='/usr/share/virt-manager/vmm-host.glade', addinterface=None, addpool=None, conn=<vmmConnection(vmm=<virConnect(_o=<PyCObject at remote 0x7fafd4481ee0>) at remote 0x1b3f9e0>, _support_dict={1003: True...(truncated), kw=0x0) at Objects/classobject.c:2579 >+ self = <vmmHost(topwin=<gtk.Window at remote 0x1b650f0>, memory_usage_graph=<Sparkline(num_sets=1, reversed=False, rgb=[], filled=True, _data_array=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, <float at remote 0x1ead628>, <float at remote 0x1f37768>, <float at remote 0x1f37960>, <float at remote 0x20ebbf0>, <float at remote 0x20ebc08>, <float at remote 0x1f376f0>, <float at remote 0x1f37a20>, <float at remote 0x1ead418>, <float at remote 0x15c6978>, <float at remote 0x1ead3a0>, <float at remote 0x1f376c0>]) at remote 0x1b54870>, gladefile='/usr/share/virt-manager/vmm-host.glade', addinterface=None, addpool=None, conn=<vmmConnection(vmm=<virConnect(_o=<PyCObject at remote 0x7fafd4481ee0>) at remote 0x1b3f9e0>, _support_dict={1003: True}...(truncated) >+ klass = <value optimized out> >+ result = <value optimized out> >+#121 0x0000003ecd644043 in PyObject_Call (func=<instancemethod at remote 0x1b433c0>, arg=<value optimized out>, kw=<value optimized out>) at Objects/abstract.c:2492 >+ result = <value optimized out> >+ call = 0x3ecd6592a0 <instancemethod_call> >+#122 0x0000003ecd6d8aa3 in PyEval_CallObjectWithKeywords (func=<instancemethod at remote 0x1b433c0>, arg=(<gtk.Button at remote 0x1b43f50>,), kw=<value optimized out>) at Python/ceval.c:3663 >+ result = <value optimized out> >+#123 0x00007fafcbf33bcd in pyg_closure_marshal (closure=0x1f73f20, return_value=0x0, n_param_values=1, param_values=0x215e040, invocation_hint=<value optimized out>, marshal_data=<value optimized out>) at pygtype.c:1118 >+ state = PyGILState_UNLOCKED >+ pc = 0x1f73f20 >+ params = (<gtk.Button at remote 0x1b43f50>,) >+ ret = <value optimized out> >+ i = <value optimized out> >+ __PRETTY_FUNCTION__ = "pyg_closure_marshal" >+#124 0x0000003ec420bb3e in IA__g_closure_invoke (closure=0x1f73f20, return_value=0x0, n_param_values=1, param_values=0x215e040, invocation_hint=0x7fff21c89e50) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#125 0x0000003ec4220e23 in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1fddca0, emission_return=0x0, instance_and_params=0x215e040) at gsignal.c:3247 >+ tmp = <value optimized out> >+ handler = 0x2142100 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c8a250, instance = 0x1fddca0, ihint = {signal_id = 101, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 4} >+ class_closure = 0x10cd7e0 >+ handler_list = 0x2142100 >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 101 >+ max_sequential_handler_number = 3704 >+ return_value_altered = 1 >+#126 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c8a040) at gsignal.c:2980 >+ instance_and_params = 0x215e040 >+ signal_return_type = 4 >+ param_values = 0x215e058 >+ node = 0xfc7160 >+ i = <value optimized out> >+ n_params = 0 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#127 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 24, fp_offset = 48, overflow_arg_area = 0x7fff21c8a120, reg_save_area = 0x7fff21c8a060}} >+#128 0x0000003b2628d855 in gtk_real_button_released (button=0x1fddca0) at gtkbutton.c:1707 >+No locals. >+#129 0x0000003ec420bb3e in IA__g_closure_invoke (closure=0x10cd3e0, return_value=0x0, n_param_values=1, param_values=0xfe1d80, invocation_hint=0x7fff21c8a260) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#130 0x0000003ec422063c in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1fddca0, emission_return=0x0, instance_and_params=0xfe1d80) at gsignal.c:3177 >+ accumulator = 0x0 >+ emission = {next = 0x7fff21c8a6b0, instance = 0x1fddca0, ihint = {signal_id = 100, detail = 0, run_type = G_SIGNAL_RUN_FIRST}, state = EMISSION_RUN, chain_type = 15869296} >+ class_closure = 0x10cd3e0 >+ handler_list = <value optimized out> >+ return_accu = 0x0 >+ accu = {g_type = 0, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 100 >+ max_sequential_handler_number = 3704 >+ return_value_altered = <value optimized out> >+#131 0x0000003ec42220af in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c8a450) at gsignal.c:2980 >+ instance_and_params = 0xfe1d80 >+ signal_return_type = 4 >+ param_values = 0xfe1d98 >+ node = 0xfc7090 >+ i = <value optimized out> >+ n_params = 0 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#132 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 24, fp_offset = 48, overflow_arg_area = 0x7fff21c8a530, reg_save_area = 0x7fff21c8a470}} >+#133 0x0000003b2628c0b7 in gtk_button_button_release (widget=<value optimized out>, event=<value optimized out>) at gtkbutton.c:1599 >+ button = <value optimized out> >+#134 0x0000003b26353ef3 in _gtk_marshal_BOOLEAN__BOXED (closure=0x10ce720, return_value=0x7fff21c8a700, n_param_values=<value optimized out>, param_values=0x206aec0, invocation_hint=<value optimized out>, marshal_data=<value optimized out>) at gtkmarshalers.c:84 >+ callback = 0x3b2628c080 <gtk_button_button_release> >+ cc = 0x10ce720 >+ data1 = 0x1fddca0 >+ data2 = 0xd8e010 >+ v_return = <value optimized out> >+ __PRETTY_FUNCTION__ = "_gtk_marshal_BOOLEAN__BOXED" >+#135 0x0000003ec420bb3e in IA__g_closure_invoke (closure=0x10ce720, return_value=0x7fff21c8a700, n_param_values=2, param_values=0x206aec0, invocation_hint=0x7fff21c8a6c0) at gclosure.c:767 >+ marshal = <value optimized out> >+ marshal_data = <value optimized out> >+ in_marshal = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__g_closure_invoke" >+#136 0x0000003ec42209ed in signal_emit_unlocked_R (node=<value optimized out>, detail=0, instance=0x1fddca0, emission_return=0x7fff21c8a850, instance_and_params=0x206aec0) at gsignal.c:3285 >+ accumulator = 0x10cea20 >+ emission = {next = 0x0, instance = 0x1fddca0, ihint = {signal_id = 34, detail = 0, run_type = G_SIGNAL_RUN_LAST}, state = EMISSION_RUN, chain_type = 15869296} >+ class_closure = 0x10ce720 >+ handler_list = 0x0 >+ return_accu = 0x7fff21c8a700 >+ accu = {g_type = 20, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ signal_id = 34 >+ max_sequential_handler_number = 3704 >+ return_value_altered = 0 >+#137 0x0000003ec4221f4a in IA__g_signal_emit_valist (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>, var_args=0x7fff21c8a8b0) at gsignal.c:2990 >+ return_value = {g_type = 20, data = {{v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}, {v_int = 0, v_uint = 0, v_long = 0, v_ulong = 0, v_int64 = 0, v_uint64 = 0, v_float = 0, v_double = 0, v_pointer = 0x0}}} >+ error = 0x0 >+ rtype = 20 >+ static_scope = 0 >+ instance_and_params = 0x206aec0 >+ signal_return_type = 20 >+ param_values = 0x206aed8 >+ node = 0x10ce9a0 >+ i = <value optimized out> >+ n_params = 1 >+ __PRETTY_FUNCTION__ = "IA__g_signal_emit_valist" >+#138 0x0000003ec42225f3 in IA__g_signal_emit (instance=<value optimized out>, signal_id=<value optimized out>, detail=<value optimized out>) at gsignal.c:3037 >+ var_args = {{gp_offset = 32, fp_offset = 48, overflow_arg_area = 0x7fff21c8a990, reg_save_area = 0x7fff21c8a8d0}} >+#139 0x0000003b26476b2f in gtk_widget_event_internal (widget=0x1fddca0, event=0x2017b50) at gtkwidget.c:4775 >+ signal_num = <value optimized out> >+ return_val = 0 >+#140 0x0000003b2634ac6a in IA__gtk_propagate_event (widget=0x1fddca0, event=0x2017b50) at gtkmain.c:2417 >+ tmp = <value optimized out> >+ handled_event = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__gtk_propagate_event" >+#141 0x0000003b2634bddc in IA__gtk_main_do_event (event=0x2017b50) at gtkmain.c:1622 >+ event_widget = <value optimized out> >+ grab_widget = 0x1fddca0 >+ window_group = 0x1b0fec0 >+ rewritten_event = <value optimized out> >+ tmp_list = <value optimized out> >+ __PRETTY_FUNCTION__ = "IA__gtk_main_do_event" >+#142 0x0000003b26a5fffc in gdk_event_dispatch (source=<value optimized out>, callback=<value optimized out>, user_data=<value optimized out>) at gdkevents-x11.c:2372 >+ display = <value optimized out> >+ event = 0x2017b50 >+#143 0x0000003ec3a38f0e in g_main_dispatch (context=0x10b1ce0) at gmain.c:1960 >+ dispatch = 0x3b26a5ffb0 <gdk_event_dispatch> >+ was_in_call = 0 >+ user_data = 0x0 >+ callback = 0 >+ cb_funcs = 0x0 >+ cb_data = 0x0 >+ current_source_link = {data = 0x10b1c60, next = 0x0} >+ need_destroy = <value optimized out> >+ source = 0x10b1c60 >+ current = 0x11143c0 >+ i = <value optimized out> >+#144 IA__g_main_context_dispatch (context=0x10b1ce0) at gmain.c:2513 >+No locals. >+#145 0x0000003ec3a3c938 in g_main_context_iterate (context=0x10b1ce0, block=1, dispatch=1, self=<value optimized out>) at gmain.c:2591 >+ max_priority = 2147483647 >+ timeout = 789 >+ some_ready = 1 >+ nfds = 11 >+ allocated_nfds = <value optimized out> >+ fds = <value optimized out> >+ __PRETTY_FUNCTION__ = "g_main_context_iterate" >+#146 0x0000003ec3a3cd55 in IA__g_main_loop_run (loop=0x1ca9960) at gmain.c:2799 >+ self = 0x10bcf40 >+ __PRETTY_FUNCTION__ = "IA__g_main_loop_run" >+#147 0x0000003b2634c2c7 in IA__gtk_main () at gtkmain.c:1218 >+ tmp_list = <value optimized out> >+ functions = 0x0 >+ init = <value optimized out> >+ loop = 0x1ca9960 >+#148 0x00007fafcbc1e666 in _wrap_gtk_main (self=<value optimized out>) at ./gtk.override:1241 >+ _save = 0xa7a0a0 >+ main_watch = 0x106ff70 >+#149 0x0000003ecd6de726 in call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3778 >+ meth = <value optimized out> >+ self = <value optimized out> >+ flags = <value optimized out> >+ tstate = <value optimized out> >+ func = <built-in function main> >+ w = <value optimized out> >+ na = 0 >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0xc68458 >+ x = <value optimized out> >+#150 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0xc68460 >+ stack_pointer = 0xc68460 >+ next_instr = 0xb6fe8a "\001Wd" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'main' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0xc68458 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x7fafcde62210 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0xb6fa54 "t" >+ names = ('setup_pypath', 'virtManager', 'cli', 'setup_i18n', 'gettext_app', 'gettext_dir', 'None', 'join', 'sys', 'argv', 'warnings', 'filterwarnings', 'True', 'gobject', 'hasattr', 'set_prgname', 'appname', 'gtk', 'globals', 'Warning', 'str', 'Exception', 'resetwarnings', 'parse_commandline', 'type', 'RuntimeError', '_', 'setup_logging', 'debug', 'logging_setup', 'logging', 'gtk_version', 'check_virtinst_version', 'virtinst_str', 'icon_theme_get_default', 'prepend_search_path', 'icon_dir', 'gdk', 'threads_init', 'setup_glade_i18n', 'dbus', 'dbus.glib', 'glib', 'dbus.service', 'virtManager.config', 'virtManager.util', 'config', 'vmmConfig', 'appversion', 'glade_dir', 'util', 'running_config', 'default_qemu_user', 'rhel_enable_unsupported_opts', 'rhel6_defaults', 'preferred_distros', 'hv_packages', 'libvirt_packages', 'virtManager.guidiff', 'guidiff', 'is_gui', 'nofork', 'drop_tty', 'drop_stdio', 'signal', 'SIGHUP', 'SIG_IGN', 'virtManager.engine', 'vmmEngine', 'window_set_default_icon_name', 'show', 'uri', 'optparse'...(truncated) >+ consts = (None, -1, ('cli',), ' ', 'error', 'module', 'gtk', 'append', 'set_prgname', 'Unable to initialize GTK: %s', 'Launched as: %s', 'GTK version: %s', 'virtManager import: %s', ('vmmEngine',), "can't use --show-* options without --connect", 'Connected to already running instance.', 'Could not get connection to session bus, disabling DBus service') >+#151 0x0000003ecd6df99f in fast_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3880 >+ retval = 0x0 >+ i = <value optimized out> >+ fastlocals = 0xc683c8 >+ f = Frame 0xc68250, for file /usr/share/virt-manager/virt-manager.py, line 377, in main (virtManager=<module at remote 0xb9e718>, cli=<module at remote 0xc0fe88>, gtk_error=None, origargs='/usr/share/virt-manager/virt-manager.py', warnings=<module at remote 0x7fafd4428d00>, gobject=<module at remote 0xc20520>, gtk=<module at remote 0xd22d70>, options=<Values(profile=None, nodbus=None, show_domain_console=None, no_conn_auto=None, uuid=None, nofork=None, show_domain_editor=None, show_domain_performance=None, show=None, uri=None, debug=False) at remote 0x102d8c0>, ignore=[], icon_theme=<gtk.IconTheme at remote 0x17000a0>, dbus=<module at remote 0x16fd5c8>, config=<vmmConfig(rhel6_defaults=False, support_threading=True, glade_dir='/usr/share/virt-manager', _spice_error=None, conf_dir='/apps/virt-manager', appname='virt-manager', libvirt_packages=['libvirt'], support_inspection=False, keyring=None, appversion='0.9.0', preferred_distros=['rhel', 'fedora'], hv_packages=['qemu-kvm'], conf=<gconf.Client at remote 0x17ea9b...(truncated) >+ tstate = 0xa7a0a0 >+ co = <value optimized out> >+ nd = 0 >+ globals = <value optimized out> >+ argdefs = <value optimized out> >+ d = 0x0 >+#152 call_function (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:3815 >+ func = <function at remote 0xbb7398> >+ w = <value optimized out> >+ na = <value optimized out> >+ nk = <value optimized out> >+ n = <value optimized out> >+ pfunc = 0xb4c008 >+ x = <value optimized out> >+#153 PyEval_EvalFrameEx (f=<value optimized out>, throwflag=<value optimized out>) at Python/ceval.c:2453 >+ sp = 0xb4c010 >+ stack_pointer = <value optimized out> >+ next_instr = 0xb592f8 "\001Wq'\002\004e+" >+ opcode = <value optimized out> >+ oparg = <value optimized out> >+ why = WHY_NOT >+ err = 0 >+ x = <value optimized out> >+ v = <value optimized out> >+ w = 'main' >+ u = <value optimized out> >+ t = <value optimized out> >+ stream = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0xb4c008 >+ retval = 0x0 >+ tstate = <value optimized out> >+ co = 0x7fafcde62288 >+ instr_ub = -1 >+ instr_lb = 0 >+ instr_prev = -1 >+ first_instr = 0xb59174 "d" >+ names = ('os', 'os.path', 'sys', 'logging', 'traceback', 'signal', 'optparse', '__builtins__', '_', 'split_list', 'appname', 'appversion', 'gettext_app', 'gettext_dir', 'virtinst_str', 'asset_dir', 'glade_dir', 'icon_dir', 'pylib_dir', 'pyarchlib_dir', 'default_qemu_user', 'bool', 'int', 'rhel_enable_unsupported_opts', 'preferred_distros', 'hv_packages', 'libvirt_packages', 'False', 'logging_setup', '_show_startup_error', 'setup_pypath', 'setup_glade_i18n', 'drop_tty', 'drop_stdio', 'parse_commandline', 'launch_specific_window', '_conn_state_changed', 'show_engine', 'show_remote', 'dbus_config', 'opt_show_cb', 'main', '__name__', 'KeyboardInterrupt', 'debug', 'SystemExit', 'Exception', 'run_e', 'exception', 'globals', 'str', 'join', 'format_exc') >+ consts = (-1, None, <code at remote 0x7fafd43b9648>, <code at remote 0x7fafd43b58a0>, 'virt-manager', '0.9.0', '/usr/share/locale', '0.600.0', '/usr/share/virt-manager', '/icons', '/usr/lib64/virt-manager', 'qemu', '0', 'rhel,fedora', 'qemu-kvm', 'libvirt', <code at remote 0x7fafd43b5b70>, <code at remote 0x7fafd43b5f30>, <code at remote 0x7fafd43b5be8>, <code at remote 0x7fafd43bc828>, <code at remote 0x7fafd43bceb8>, <code at remote 0x7fafd43c4e40>, <code at remote 0x7fafd43c4eb8>, <code at remote 0x7fafcde62030>, <code at remote 0x7fafd43c4f30>, <code at remote 0x7fafcde620a8>, <code at remote 0x7fafcde62120>, <code at remote 0x7fafcde62198>, <code at remote 0x7fafcde62210>, '__main__', 'Received KeyboardInterrupt. Exiting application.', 'gtk', '') >+#154 0x0000003ecd6e0467 in PyEval_EvalCodeEx (co=0x7fafcde62288, globals=<value optimized out>, locals=<value optimized out>, args=<value optimized out>, argcount=0, kws=0x0, kwcount=0, defs=0x0, defcount=0, closure=0x0) at Python/ceval.c:3044 >+ f = <value optimized out> >+ retval = 0x0 >+ fastlocals = <value optimized out> >+ freevars = 0xb4c008 >+ tstate = 0xa7a0a0 >+ x = <value optimized out> >+ u = <value optimized out> >+#155 0x0000003ecd6e0542 in PyEval_EvalCode (co=<value optimized out>, globals=<value optimized out>, locals=<value optimized out>) at Python/ceval.c:545 >+No locals. >+#156 0x0000003ecd6fb88c in run_mod (mod=<value optimized out>, filename=<value optimized out>, globals={'glade_dir': '/usr/share/virt-manager', 'launch_specific_window': <function at remote 0xbae1b8>, 'libvirt_packages': ['libvirt'], 'setup_pypath': <function at remote 0x7fafcde68ed8>, 'preferred_distros': ['rhel', 'fedora'], '__name__': '__main__', 'GInitiallyUnowned': <GObjectMeta(__gtype__=<gobject.GType at remote 0xde1450>, __doc__=<gobject.GObject.__doc__ at remote 0x7fafd44070e0>, __module__='gtk') at remote 0xea7fa0>, 'rhel_enable_unsupported_opts': False, '_show_startup_error': <function at remote 0x7fafcde68aa0>, 'appname': 'virt-manager', 'gettext_dir': '/usr/share/locale', 'gtk': <module at remote 0xd22d70>, 'setup_glade_i18n': <function at remote 0x7fafcde6d140>, 'asset_dir': '/usr/share/virt-manager', '__package__': None, 'optparse': <module at remote 0xbb5b40>, 'icon_dir': '/usr/share/virt-manager/icons', 'main': <function at remote 0xbb7398>, '__doc__': None, 'gettext_app': 'virt-manager', 'show_engine': <function at remote 0xbb2050>, '_conn_state_changed': <function at remote 0xbae398>, '__buil...(truncated), locals={'glade_dir': '/usr/share/virt-manager', 'launch_specific_window': <function at remote 0xbae1b8>, 'libvirt_packages': ['libvirt'], 'setup_pypath': <function at remote 0x7fafcde68ed8>, 'preferred_distros': ['rhel', 'fedora'], '__name__': '__main__', 'GInitiallyUnowned': <GObjectMeta(__gtype__=<gobject.GType at remote 0xde1450>, __doc__=<gobject.GObject.__doc__ at remote 0x7fafd44070e0>, __module__='gtk') at remote 0xea7fa0>, 'rhel_enable_unsupported_opts': False, '_show_startup_error': <function at remote 0x7fafcde68aa0>, 'appname': 'virt-manager', 'gettext_dir': '/usr/share/locale', 'gtk': <module at remote 0xd22d70>, 'setup_glade_i18n': <function at remote 0x7fafcde6d140>, 'asset_dir': '/usr/share/virt-manager', '__package__': None, 'optparse': <module at remote 0xbb5b40>, 'icon_dir': '/usr/share/virt-manager/icons', 'main': <function at remote 0xbb7398>, '__doc__': None, 'gettext_app': 'virt-manager', 'show_engine': <function at remote 0xbb2050>, '_conn_state_changed': <function at remote 0xbae398>, '__buil...(truncated), flags=<value optimized out>, arena=<value optimized out>) at Python/pythonrun.c:1351 >+ co = 0x7fafcde62288 >+ v = <value optimized out> >+#157 0x0000003ecd6fb960 in PyRun_FileExFlags (fp=0xb35990, filename=0x7fff21c8ba6c "/usr/share/virt-manager/virt-manager.py", start=<value optimized out>, globals={'glade_dir': '/usr/share/virt-manager', 'launch_specific_window': <function at remote 0xbae1b8>, 'libvirt_packages': ['libvirt'], 'setup_pypath': <function at remote 0x7fafcde68ed8>, 'preferred_distros': ['rhel', 'fedora'], '__name__': '__main__', 'GInitiallyUnowned': <GObjectMeta(__gtype__=<gobject.GType at remote 0xde1450>, __doc__=<gobject.GObject.__doc__ at remote 0x7fafd44070e0>, __module__='gtk') at remote 0xea7fa0>, 'rhel_enable_unsupported_opts': False, '_show_startup_error': <function at remote 0x7fafcde68aa0>, 'appname': 'virt-manager', 'gettext_dir': '/usr/share/locale', 'gtk': <module at remote 0xd22d70>, 'setup_glade_i18n': <function at remote 0x7fafcde6d140>, 'asset_dir': '/usr/share/virt-manager', '__package__': None, 'optparse': <module at remote 0xbb5b40>, 'icon_dir': '/usr/share/virt-manager/icons', 'main': <function at remote 0xbb7398>, '__doc__': None, 'gettext_app': 'virt-manager', 'show_engine': <function at remote 0xbb2050>, '_conn_state_changed': <function at remote 0xbae398>, '__buil...(truncated), locals={'glade_dir': '/usr/share/virt-manager', 'launch_specific_window': <function at remote 0xbae1b8>, 'libvirt_packages': ['libvirt'], 'setup_pypath': <function at remote 0x7fafcde68ed8>, 'preferred_distros': ['rhel', 'fedora'], '__name__': '__main__', 'GInitiallyUnowned': <GObjectMeta(__gtype__=<gobject.GType at remote 0xde1450>, __doc__=<gobject.GObject.__doc__ at remote 0x7fafd44070e0>, __module__='gtk') at remote 0xea7fa0>, 'rhel_enable_unsupported_opts': False, '_show_startup_error': <function at remote 0x7fafcde68aa0>, 'appname': 'virt-manager', 'gettext_dir': '/usr/share/locale', 'gtk': <module at remote 0xd22d70>, 'setup_glade_i18n': <function at remote 0x7fafcde6d140>, 'asset_dir': '/usr/share/virt-manager', '__package__': None, 'optparse': <module at remote 0xbb5b40>, 'icon_dir': '/usr/share/virt-manager/icons', 'main': <function at remote 0xbb7398>, '__doc__': None, 'gettext_app': 'virt-manager', 'show_engine': <function at remote 0xbb2050>, '_conn_state_changed': <function at remote 0xbae398>, '__buil...(truncated), closeit=1, flags=0x7fff21c8b200) at Python/pythonrun.c:1337 >+ ret = <value optimized out> >+ mod = 0xb65508 >+ arena = 0xb02140 >+#158 0x0000003ecd6fce4c in PyRun_SimpleFileExFlags (fp=0xb35990, filename=0x7fff21c8ba6c "/usr/share/virt-manager/virt-manager.py", closeit=1, flags=0x7fff21c8b200) at Python/pythonrun.c:941 >+ m = <value optimized out> >+ d = {'glade_dir': '/usr/share/virt-manager', 'launch_specific_window': <function at remote 0xbae1b8>, 'libvirt_packages': ['libvirt'], 'setup_pypath': <function at remote 0x7fafcde68ed8>, 'preferred_distros': ['rhel', 'fedora'], '__name__': '__main__', 'GInitiallyUnowned': <GObjectMeta(__gtype__=<gobject.GType at remote 0xde1450>, __doc__=<gobject.GObject.__doc__ at remote 0x7fafd44070e0>, __module__='gtk') at remote 0xea7fa0>, 'rhel_enable_unsupported_opts': False, '_show_startup_error': <function at remote 0x7fafcde68aa0>, 'appname': 'virt-manager', 'gettext_dir': '/usr/share/locale', 'gtk': <module at remote 0xd22d70>, 'setup_glade_i18n': <function at remote 0x7fafcde6d140>, 'asset_dir': '/usr/share/virt-manager', '__package__': None, 'optparse': <module at remote 0xbb5b40>, 'icon_dir': '/usr/share/virt-manager/icons', 'main': <function at remote 0xbb7398>, '__doc__': None, 'gettext_app': 'virt-manager', 'show_engine': <function at remote 0xbb2050>, '_conn_state_changed': <function at remote 0xbae398>, '__buil...(truncated) >+ v = <value optimized out> >+ ext = <value optimized out> >+ set_file_name = 1 >+ ret = <value optimized out> >+ len = <value optimized out> >+#159 0x0000003ecd7094cf in Py_Main (argc=<value optimized out>, argv=<value optimized out>) at Modules/main.c:577 >+ c = <value optimized out> >+ sts = <value optimized out> >+ command = 0x0 >+ filename = 0x7fff21c8ba6c "/usr/share/virt-manager/virt-manager.py" >+ module = 0x0 >+ fp = 0xb35990 >+ p = <value optimized out> >+ unbuffered = <value optimized out> >+ skipfirstline = 0 >+ stdin_is_interactive = 0 >+ help = <value optimized out> >+ version = <value optimized out> >+ saw_unbuffered_flag = 1 >+ cf = {cf_flags = 0} >+#160 0x0000003ec1e1ecdd in __libc_start_main (main=0x400710 <main>, argc=2, ubp_av=0x7fff21c8b328, init=<value optimized out>, fini=<value optimized out>, rtld_fini=<value optimized out>, stack_end=0x7fff21c8b318) at libc-start.c:226 >+ result = <value optimized out> >+ unwind_buf = {cancel_jmp_buf = {{jmp_buf = {0, 167209284534519799, 4195872, 140733760189216, 0, 0, -167679490922395657, 157494279888160759}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x1}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} >+ not_first_call = <value optimized out> >+#161 0x0000000000400649 in _start () >+No symbol table info available. >+From To Syms Read Shared Object Library >+0x0000003ecd63c680 0x0000003ecd71f0f8 Yes /usr/lib64/libpython2.6.so.1.0 >+0x0000003ec2205640 0x0000003ec2210e58 Yes /lib64/libpthread.so.0 >+0x0000003ec2600de0 0x0000003ec2601998 Yes /lib64/libdl.so.2 >+0x0000003ed0600e10 0x0000003ed0601688 Yes /lib64/libutil.so.1 >+0x0000003ec2a03ea0 0x0000003ec2a43fe8 Yes /lib64/libm.so.6 >+0x0000003ec1e1ea20 0x0000003ec1f4c67c Yes /lib64/libc.so.6 >+0x0000003ec1a00b00 0x0000003ec1a197ab Yes /lib64/ld-linux-x86-64.so.2 >+0x00007fafd4184110 0x00007fafd41898c8 Yes /usr/lib64/python2.6/lib-dynload/_socketmodule.so >+0x00007fafd3f7c080 0x00007fafd3f7ec38 Yes /usr/lib64/python2.6/lib-dynload/_ssl.so >+0x000000370ee14570 0x000000370ee460c8 Yes /usr/lib64/libssl.so.10 >+0x000000370ea5ca00 0x000000370eb239f8 Yes /usr/lib64/libcrypto.so.10 >+0x0000003bab609d80 0x0000003bab636698 Yes /lib64/libgssapi_krb5.so.2 >+0x0000003babe1a610 0x0000003babe8f4c8 Yes /lib64/libkrb5.so.3 >+0x0000003bab2013f0 0x0000003bab201fc8 Yes /lib64/libcom_err.so.2 >+0x0000003baae047c0 0x0000003baae1e468 Yes /lib64/libk5crypto.so.3 >+0x0000003ec3201f30 0x0000003ec320d1b8 Yes /lib64/libz.so.1 >+0x0000003baba02840 0x0000003baba079f8 Yes /lib64/libkrb5support.so.0 >+0x0000003ecd200bf0 0x0000003ecd2011d8 Yes /lib64/libkeyutils.so.1 >+0x0000003ec3e03930 0x0000003ec3e128d8 Yes /lib64/libresolv.so.2 >+0x0000003ec3605850 0x0000003ec3615c88 Yes /lib64/libselinux.so.1 >+0x00007fafd3d75aa0 0x00007fafd3d76bd8 Yes /usr/lib64/python2.6/lib-dynload/cStringIO.so >+0x00007fafcdc5d8d0 0x00007fafcdc5e898 Yes /usr/lib64/python2.6/lib-dynload/timemodule.so >+0x00007fafcda57600 0x00007fafcda59de8 Yes /usr/lib64/python2.6/lib-dynload/stropmodule.so >+0x00007fafcd853ec0 0x00007fafcd854938 Yes /usr/lib64/python2.6/lib-dynload/_functoolsmodule.so >+0x00007fafcd64e140 0x00007fafcd650ab8 Yes /usr/lib64/python2.6/lib-dynload/_collectionsmodule.so >+0x00007fafcd445eb0 0x00007fafcd447a28 Yes /usr/lib64/python2.6/lib-dynload/operator.so >+0x00007fafcd23ea20 0x00007fafcd23ffd8 Yes /usr/lib64/python2.6/lib-dynload/_localemodule.so >+0x00007fafcd036820 0x00007fafcd0397e8 Yes /usr/lib64/python2.6/lib-dynload/_struct.so >+0x00007fafcce24880 0x00007fafcce2f658 Yes /usr/lib64/python2.6/lib-dynload/cPickle.so >+0x00007fafccb43a80 0x00007fafccb557f8 Yes /usr/lib64/python2.6/site-packages/libvirtmod.so >+0x00007fafcc7a1ef0 0x00007fafcc8ba708 Yes /usr/lib64/libvirt.so.0 >+0x0000003ed6e01270 0x0000003ed6e02d98 Yes /lib64/libcap-ng.so.0 >+0x0000003ed7201380 0x0000003ed7205498 Yes /usr/lib64/libyajl.so.1 >+0x0000003ed5215400 0x0000003ed523a8c8 Yes /lib64/libnl.so.1 >+0x00007fafcc556500 0x00007fafcc55bc58 Yes /lib64/libaudit.so.1 >+0x0000003ed4205400 0x0000003ed421f0e8 Yes /lib64/libdevmapper.so.1.02 >+0x0000003ed4e026d0 0x0000003ed4e05ea8 Yes /usr/lib64/libnuma.so.1 >+0x0000003ed3215d80 0x0000003ed327fb48 Yes /usr/lib64/libgnutls.so.26 >+0x0000003ed2206e00 0x0000003ed2250178 Yes /lib64/libgcrypt.so.11 >+0x00000037fae046e0 0x00000037fae14578 Yes /usr/lib64/libsasl2.so.2 >+0x000000370f60dbb0 0x000000370f642af8 Yes /usr/lib64/libcurl.so.4 >+0x0000003b28204140 0x0000003b2820a828 Yes /usr/lib64/libnetcf.so.1 >+0x0000003ed7606c00 0x0000003ed761fee8 Yes /usr/lib64/libpcap.so.1 >+0x0000003b26e2c6f0 0x0000003b26f086b8 Yes /usr/lib64/libxml2.so.2 >+0x0000003ed3a03e80 0x0000003ed3a2e618 Yes /lib64/libsepol.so.1 >+0x0000003ed26028c0 0x0000003ed260a7a8 Yes /lib64/libudev.so.0 >+0x0000003ed2e01a50 0x0000003ed2e0d168 Yes /usr/lib64/libtasn1.so.3 >+0x0000003ed1a00820 0x0000003ed1a00d88 Yes /lib64/libgpg-error.so.0 >+0x00000037f8e00c00 0x00000037f8e059a8 Yes /lib64/libcrypt.so.1 >+0x0000003ece602f00 0x0000003ece6073f8 Yes /lib64/libidn.so.11 >+0x0000003aa7a0e070 0x0000003aa7a3a7c8 Yes /lib64/libldap-2.4.so.2 >+0x0000003ec2e02140 0x0000003ec2e054f8 Yes /lib64/librt.so.1 >+0x0000003aa7209330 0x0000003aa722c0a8 Yes /usr/lib64/libssl3.so >+0x0000003aa6e09bb0 0x0000003aa6e21d98 Yes /usr/lib64/libsmime3.so >+0x0000003aa6a18aa0 0x0000003aa6afd768 Yes /usr/lib64/libnss3.so >+0x00000031c8c0a900 0x00000031c8c15c48 Yes /usr/lib64/libnssutil3.so >+0x00000031c9000ee0 0x00000031c9001d98 Yes /lib64/libplds4.so >+0x00000031c8801410 0x00000031c8802b48 Yes /lib64/libplc4.so >+0x00000031c940d0d0 0x00000031c942cad8 Yes /lib64/libnspr4.so >+0x000000370f204770 0x000000370f21ef28 Yes /usr/lib64/libssh2.so.1 >+0x0000003ed8204cc0 0x0000003ed82320c8 Yes /usr/lib64/libaugeas.so.0 >+0x0000003b27203a00 0x0000003b272101b8 Yes /usr/lib64/libexslt.so.0 >+0x0000003b2960a9e0 0x0000003b2962ef98 Yes /usr/lib64/libxslt.so.1 >+0x0000003ed16032b0 0x0000003ed1642078 Yes /lib64/libfreebl3.so >+0x0000003aa76035c0 0x0000003aa760a898 Yes /lib64/liblber-2.4.so.2 >+0x0000003ed8a01640 0x0000003ed8a0de08 Yes /usr/lib64/libfa.so.1 >+0x00007fafcc347f70 0x00007fafcc34d638 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/glib/_glib.so >+0x00007fafcc13f990 0x00007fafcc140828 Yes /usr/lib64/libpyglib-2.0-python.so.0 >+0x0000003ec4208970 0x0000003ec4231f78 Yes /lib64/libgobject-2.0.so.0 >+0x0000003ec4a01590 0x0000003ec4a029e8 Yes /lib64/libgthread-2.0.so.0 >+0x0000003ec3a13470 0x0000003ec3a8a188 Yes /lib64/libglib-2.0.so.0 >+0x00007fafcbf239d0 0x00007fafcbf33d38 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/gobject/_gobject.so >+0x00007fafcbb35f30 0x00007fafcbc5a718 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/gtk/_gtk.so >+0x0000003b26266280 0x0000003b265030d8 Yes /usr/lib64/libgtk-x11-2.0.so.0 >+0x0000003b26a1cff0 0x0000003b26a7eb88 Yes /usr/lib64/libgdk-x11-2.0.so.0 >+0x0000003eca6092f0 0x0000003eca614908 Yes /usr/lib64/libatk-1.0.so.0 >+0x0000003ec4e189a0 0x0000003ec4e7aca8 Yes /lib64/libgio-2.0.so.0 >+0x0000003ec9607330 0x0000003ec9621048 Yes /usr/lib64/libpangoft2-1.0.so.0 >+0x0000003b25e05780 0x0000003b25e17718 Yes /usr/lib64/libgdk_pixbuf-2.0.so.0 >+0x0000003b25a048b0 0x0000003b25a093d8 Yes /usr/lib64/libpangocairo-1.0.so.0 >+0x0000003b25609c50 0x0000003b2565b008 Yes /usr/lib64/libcairo.so.2 >+0x0000003ec8a0ed30 0x0000003ec8a2d5f8 Yes /usr/lib64/libpango-1.0.so.0 >+0x0000003ec660c850 0x0000003ec6675298 Yes /usr/lib64/libfreetype.so.6 >+0x0000003ec7605c80 0x0000003ec761fec8 Yes /usr/lib64/libfontconfig.so.1 >+0x0000003ec4601080 0x0000003ec4601fc8 Yes /lib64/libgmodule-2.0.so.0 >+0x0000003ec5a1dd80 0x0000003ec5aab8f8 Yes /usr/lib64/libX11.so.6 >+0x0000003ec7e01370 0x0000003ec7e04178 Yes /usr/lib64/libXfixes.so.3 >+0x0000003ec6203580 0x0000003ec620e678 Yes /usr/lib64/libXext.so.6 >+0x0000003ec72018c0 0x0000003ec7207f58 Yes /usr/lib64/libXrender.so.1 >+0x0000003ec9a00a20 0x0000003ec9a01508 Yes /usr/lib64/libXinerama.so.1 >+0x0000003ec7a01f00 0x0000003ec7a0c7c8 Yes /usr/lib64/libXi.so.6 >+0x0000003ec9201720 0x0000003ec9206838 Yes /usr/lib64/libXrandr.so.2 >+0x0000003ecb202880 0x0000003ecb207688 Yes /usr/lib64/libXcursor.so.1 >+0x0000003ecaa00b40 0x0000003ecaa01918 Yes /usr/lib64/libXcomposite.so.1 >+0x0000003ec8600a90 0x0000003ec8601638 Yes /usr/lib64/libXdamage.so.1 >+0x0000003b25204830 0x0000003b2521e768 Yes /usr/lib64/libpng12.so.0 >+0x0000003ec9e07230 0x0000003ec9e51eb8 Yes /usr/lib64/libpixman-1.so.0 >+0x0000003ec5603b70 0x0000003ec561ca08 Yes /lib64/libexpat.so.1 >+0x0000003ec5e08650 0x0000003ec5e13898 Yes /usr/lib64/libxcb.so.1 >+0x0000003ec5200dd0 0x0000003ec5201b68 Yes /usr/lib64/libXau.so.6 >+0x00007fafcb87eae0 0x00007fafcb885db8 Yes /usr/lib64/python2.6/site-packages/cairo/_cairo.so >+0x00007fafcb6439b0 0x00007fafcb65a328 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/gio/_gio.so >+0x00007fafcb42a020 0x00007fafcb42b378 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/gio/unix.so >+0x00007fafcb20c4b0 0x00007fafcb21a858 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/pango.so >+0x00007fafcafc7e40 0x00007fafcafecd08 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/atk.so >+0x00007fafcadb7dd0 0x00007fafcadb8ce8 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/pangocairo.so >+0x00007fafcabaa1f0 0x00007fafcabb2678 Yes /lib64/libnss_files.so.2 >+0x00007fafca980b40 0x00007fafca9a2608 Yes /usr/lib64/gtk-2.0/2.10.0/engines/libclearlooks.so >+0x00007fafca77b600 0x00007fafca77bde8 Yes /usr/lib64/gtk-2.0/modules/libpk-gtk-module.so >+0x0000003a94e09040 0x0000003a94e19c68 Yes /usr/lib64/libdbus-glib-1.so.2 >+0x0000003bac607090 0x0000003bac62e538 Yes /lib64/libdbus-1.so.3 >+0x00007fafca575f00 0x00007fafca578168 Yes /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so >+0x0000003b28e01bf0 0x0000003b28e02fe8 Yes /usr/lib64/libcanberra-gtk.so.0 >+0x0000003a26803280 0x0000003a2680c248 Yes /usr/lib64/libcanberra.so.0 >+0x0000003a25c01fa0 0x0000003a25c05fd8 Yes /usr/lib64/libvorbisfile.so.3 >+0x0000003a25803ae0 0x0000003a2581a9b8 Yes /usr/lib64/libvorbis.so.0 >+0x0000003ed36018d0 0x0000003ed3603c28 Yes /usr/lib64/libogg.so.0 >+0x0000003ed7a01e30 0x0000003ed7a09cb8 Yes /usr/lib64/libtdb.so.1 >+0x0000003ed0a02370 0x0000003ed0a06758 Yes /usr/lib64/libltdl.so.7 >+0x00007fafca36fbe0 0x00007fafca371638 Yes /usr/lib64/python2.6/lib-dynload/selectmodule.so >+0x00007fafca16ad10 0x00007fafca16ba18 Yes /usr/lib64/python2.6/lib-dynload/fcntlmodule.so >+0x00007fafc9f660c0 0x00007fafc9f67f78 Yes /usr/lib64/python2.6/lib-dynload/binascii.so >+0x00007fafc9d33e00 0x00007fafc9d4ba58 Yes /usr/lib64/python2.6/site-packages/libxml2mod.so >+0x00007fafc9b06080 0x00007fafc9b08208 Yes /usr/lib64/python2.6/lib-dynload/mathmodule.so >+0x00007fafc99021c0 0x00007fafc9902ee8 Yes /usr/lib64/python2.6/lib-dynload/_randommodule.so >+0x00007fafc96c98e0 0x00007fafc96e7748 Yes /usr/lib64/python2.6/site-packages/selinux/_selinux.so >+0x00007fafc94bc540 0x00007fafc94bd078 Yes /usr/lib64/python2.6/lib-dynload/_hashlib.so >+0x00007fafc92b3a30 0x00007fafc92b73e8 Yes /usr/lib64/python2.6/lib-dynload/arraymodule.so >+0x00007fafc90afb70 0x00007fafc90b01c8 Yes /usr/lib64/python2.6/lib-dynload/_bisectmodule.so >+0x00007fafc8ea10f0 0x00007fafc8ea8e08 Yes /usr/lib64/python2.6/site-packages/pycurl.so >+0x00007fafc8c9a500 0x00007fafc8c9ae58 Yes /usr/lib64/python2.6/lib-dynload/termios.so >+0x00007fafc8a933b0 0x00007fafc8a957d8 Yes /usr/lib64/python2.6/lib-dynload/zlibmodule.so >+0x00007fafc858def0 0x00007fafc858f6c8 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/gtk/glade.so >+0x0000003b29a093c0 0x0000003b29a14148 Yes /usr/lib64/libglade-2.0.so.0 >+0x00007fafc836d9e0 0x00007fafc8378df8 Yes /usr/lib64/python2.6/site-packages/_dbus_bindings.so >+0x00007fafc81648d0 0x00007fafc8164ba8 Yes /usr/lib64/python2.6/lib-dynload/_weakref.so >+0x00007fafc7f5b580 0x00007fafc7f607f8 Yes /usr/lib64/python2.6/site-packages/_xmlplus/parsers/pyexpat.so >+0x00007fafc7d56be0 0x00007fafc7d57098 Yes /usr/lib64/python2.6/site-packages/_dbus_glib_bindings.so >+0x00007fafc7b494f0 0x00007fafc7b4f688 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/gconf.so >+0x0000003a95211ae0 0x0000003a9522da18 Yes /usr/lib64/libgconf-2.so.4 >+0x00007fafc78f98c0 0x00007fafc791d438 Yes /usr/lib64/libORBit-2.so.0 >+0x00007fafc76ca160 0x00007fafc76cdbc8 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/gnomekeyring.so >+0x0000003a95604730 0x0000003a9560f708 Yes /usr/lib64/libgnome-keyring.so.0 >+0x00007fafc74bbbb0 0x00007fafc74c05b8 Yes /usr/lib64/python2.6/lib-dynload/itertoolsmodule.so >+0x00007fafc72b4c70 0x00007fafc72b5e08 Yes /usr/lib64/python2.6/lib-dynload/_heapq.so >+0x00007fafc70b05a0 0x00007fafc70b1728 Yes /usr/lib64/python2.6/site-packages/gtkvnc.so >+0x0000003b28a07b10 0x0000003b28a1b6b8 Yes /usr/lib64/libgtk-vnc-1.0.so.0 >+0x00007fafc6ea84c0 0x00007fafc6eaa2f8 Yes /usr/lib64/python2.6/site-packages/SpiceClientGtk.so >+0x000000370fe03f80 0x000000370fe09028 Yes /usr/lib64/libspice-client-gtk-2.0.so.1 >+0x000000371020b320 0x00000037102ae448 Yes /usr/lib64/libspice-client-glib-2.0.so.3 >+0x00000037fc200e40 0x00000037fc20bfb8 Yes /usr/lib64/libcelt051.so.0 >+0x0000003ed0e034a0 0x0000003ed0e1cfe8 Yes /usr/lib64/libjpeg.so.62 >+0x0000003b28600c00 0x0000003b28602598 Yes /usr/lib64/libpulse-mainloop-glib.so.0 >+0x0000003b27a0ae50 0x0000003b27a323e8 Yes /usr/lib64/libpulse.so.0 >+0x0000003b2760f4a0 0x0000003b2763a8c8 Yes /usr/lib64/libpulsecommon-0.9.21.so >+0x0000003617c019f0 0x0000003617c062a8 Yes /usr/lib64/libSM.so.6 >+0x0000003ed0204d70 0x0000003ed02137a8 Yes /usr/lib64/libICE.so.6 >+0x0000003ed56013b0 0x0000003ed56043b8 Yes /usr/lib64/libXtst.so.6 >+0x0000003ed6202f10 0x0000003ed6206ab8 Yes /lib64/libwrap.so.0 >+0x0000003a26c05560 0x0000003a26c46df8 Yes /usr/lib64/libsndfile.so.1 >+0x0000003ed5e011c0 0x0000003ed5e037e8 Yes /usr/lib64/libasyncns.so.0 >+0x00000036170015a0 0x0000003617002cc8 Yes /lib64/libuuid.so.1 >+0x0000003ed1e04070 0x0000003ed1e119f8 Yes /lib64/libnsl.so.1 >+0x0000003ed2a0be70 0x0000003ed2a30e08 Yes /usr/lib64/libFLAC.so.8 >+0x0000003a26016a30 0x0000003a26018ed8 Yes /usr/lib64/libvorbisenc.so.2 >+0x00007fafc6c9c110 0x00007fafc6ca0208 Yes /usr/lib64/python2.6/site-packages/gtk-2.0/vtemodule.so >+0x00007fafc6a0a070 0x00007fafc6a39728 Yes /usr/lib64/libvte.so.9 >+0x00000037f9606a30 0x00000037f961cf08 Yes /lib64/libncurses.so.5 >+0x00000037fc60c840 0x00000037fc615b68 Yes /lib64/libtinfo.so.5 >+0x00007fafc4d5ab70 0x00007fafc4d665b8 Yes /usr/lib64/gio/modules/libgioremote-volume-monitor.so >+0x0000003a95e08e30 0x0000003a95e12a98 Yes /usr/lib64/libgvfscommon.so.0 >+0x00007fafc4529940 0x00007fafc4542358 Yes /usr/lib64/gio/modules/libgvfsdbus.so >+0x00007fafc4a67000 0x00007fafc4a69088 Yes /usr/lib64/gtk-2.0/2.10.0/immodules/im-ibus.so >+0x00007fafc48310b0 0x00007fafc484cab8 Yes /usr/lib64/libibus.so.2 >+0x00007fafc431fb70 0x00007fafc431fff8 Yes /usr/lib64/gtk-2.0/2.10.0/loaders/svg_loader.so >+0x0000003b2b6081c0 0x0000003b2b62d578 Yes /usr/lib64/librsvg-2.so.2 >+0x0000003b2ba0f780 0x0000003b2ba2cbd8 Yes /usr/lib64/libgsf-1.so.114 >+0x0000003b29e0b610 0x0000003b29e29f18 Yes /usr/lib64/libcroco-0.6.so.3 >+0x0000003baca01630 0x0000003baca0dca8 Yes /lib64/libbz2.so.1 >+0x00007fafc411a000 0x00007fafc411d2e8 Yes /lib64/libnss_dns.so.2 >+$1 = 0x0 >+No symbol "__glib_assert_msg" in current context. >+rax 0x17 23 >+rbx 0x0 0 >+rcx 0x0 0 >+rdx 0x1aa 426 >+rsi 0x1bac6c0 29017792 >+rdi 0x3ec4444ce8 269580782824 >+rbp 0x17 0x17 >+rsp 0x7fff21c841f0 0x7fff21c841f0 >+r8 0x3ec4444ce8 269580782824 >+r9 0xdf7 3575 >+r10 0x0 0 >+r11 0x80 128 >+r12 0x0 0 >+r13 0x2072660 34023008 >+r14 0x1fe90c0 33460416 >+r15 0x1bac640 29017664 >+rip 0x3b26460e69 0x3b26460e69 <validate_row+1033> >+eflags 0x10297 [ CF PF AF SF IF RF ] >+cs 0x33 51 >+ss 0x2b 43 >+ds 0x0 0 >+es 0x0 0 >+fs 0x0 0 >+gs 0x0 0 >+Dump of assembler code for function validate_row: >+ 0x0000003b26460a60 <+0>: push %r15 >+ 0x0000003b26460a62 <+2>: mov %rdi,%r15 >+ 0x0000003b26460a65 <+5>: mov %r8,%rdi >+ 0x0000003b26460a68 <+8>: push %r14 >+ 0x0000003b26460a6a <+10>: mov %rdx,%r14 >+ 0x0000003b26460a6d <+13>: push %r13 >+ 0x0000003b26460a6f <+15>: push %r12 >+ 0x0000003b26460a71 <+17>: push %rbp >+ 0x0000003b26460a72 <+18>: push %rbx >+ 0x0000003b26460a73 <+19>: sub $0xf8,%rsp >+ 0x0000003b26460a7a <+26>: mov %rsi,0x80(%rsp) >+ 0x0000003b26460a82 <+34>: mov %rcx,0x58(%rsp) >+ 0x0000003b26460a87 <+39>: callq 0x3b26434ef0 <IA__gtk_tree_path_get_depth> >+ 0x0000003b26460a8c <+44>: test %r14,%r14 >+ 0x0000003b26460a8f <+47>: mov %eax,0x88(%rsp) >+ 0x0000003b26460a96 <+54>: je 0x3b26460aa3 <validate_row+67> >+ 0x0000003b26460a98 <+56>: movzwl (%r14),%eax >+ 0x0000003b26460a9c <+60>: test $0x180,%eax >+ 0x0000003b26460aa1 <+65>: jne 0x3b26460ac8 <validate_row+104> >+ 0x0000003b26460aa3 <+67>: movl $0x0,0x64(%rsp) >+ 0x0000003b26460aab <+75>: mov 0x64(%rsp),%eax >+ 0x0000003b26460aaf <+79>: add $0xf8,%rsp >+ 0x0000003b26460ab6 <+86>: pop %rbx >+ 0x0000003b26460ab7 <+87>: pop %rbp >+ 0x0000003b26460ab8 <+88>: pop %r12 >+ 0x0000003b26460aba <+90>: pop %r13 >+ 0x0000003b26460abc <+92>: pop %r14 >+ 0x0000003b26460abe <+94>: pop %r15 >+ 0x0000003b26460ac0 <+96>: retq >+ 0x0000003b26460ac1 <+97>: nopl 0x0(%rax) >+ 0x0000003b26460ac8 <+104>: mov 0x70(%r15),%rcx >+ 0x0000003b26460acc <+108>: movl $0x0,0x68(%rsp) >+ 0x0000003b26460ad4 <+116>: mov 0x240(%rcx),%rax >+ 0x0000003b26460adb <+123>: test %rax,%rax >+ 0x0000003b26460ade <+126>: je 0x3b26460b3b <validate_row+219> >+ 0x0000003b26460ae0 <+128>: cmpq $0x0,0x58(%rsp) >+ 0x0000003b26460ae6 <+134>: je 0x3b26460f99 <validate_row+1337> >+ 0x0000003b26460aec <+140>: mov 0x58(%rsp),%rbx >+ 0x0000003b26460af1 <+145>: mov (%rbx),%rdx >+ 0x0000003b26460af4 <+148>: mov %rdx,0xa0(%rsp) >+ 0x0000003b26460afc <+156>: mov 0x8(%rbx),%rdx >+ 0x0000003b26460b00 <+160>: mov %rdx,0xa8(%rsp) >+ 0x0000003b26460b08 <+168>: mov 0x10(%rbx),%rdx >+ 0x0000003b26460b0c <+172>: mov %rdx,0xb0(%rsp) >+ 0x0000003b26460b14 <+180>: mov 0x18(%rbx),%rdx >+ 0x0000003b26460b18 <+184>: lea 0xa0(%rsp),%rbx >+ 0x0000003b26460b20 <+192>: mov %rdx,0xb8(%rsp) >+ 0x0000003b26460b28 <+200>: mov 0x248(%rcx),%rdx >+ 0x0000003b26460b2f <+207>: mov %rbx,%rsi >+ 0x0000003b26460b32 <+210>: mov (%rcx),%rdi >+ 0x0000003b26460b35 <+213>: callq *%rax >+ 0x0000003b26460b37 <+215>: mov %eax,0x68(%rsp) >+ 0x0000003b26460b3b <+219>: callq 0x3b26477800 <IA__gtk_widget_get_type> >+ 0x0000003b26460b40 <+224>: mov %r15,%rdi >+ 0x0000003b26460b43 <+227>: mov %rax,%rsi >+ 0x0000003b26460b46 <+230>: lea 0x1358b7(%rip),%rbx # 0x3b26596404 >+ 0x0000003b26460b4d <+237>: callq 0x3b26264160 <g_type_check_instance_cast@plt> >+ 0x0000003b26460b52 <+242>: lea 0xd4(%rsp),%rcx >+ 0x0000003b26460b5a <+250>: lea 0xe0(%rsp),%rdx >+ 0x0000003b26460b62 <+258>: mov %rbx,0x28(%rsp) >+ 0x0000003b26460b67 <+263>: lea 0x15c633(%rip),%r9 # 0x3b265bd1a1 >+ 0x0000003b26460b6e <+270>: lea 0xe4(%rsp),%r8 >+ 0x0000003b26460b76 <+278>: lea 0xa90ea(%rip),%rsi # 0x3b26509c67 >+ 0x0000003b26460b7d <+285>: mov %rcx,0x40(%rsp) >+ 0x0000003b26460b82 <+290>: lea 0x13586a(%rip),%rcx # 0x3b265963f3 >+ 0x0000003b26460b89 <+297>: lea 0xb3cf0(%rip),%rbx # 0x3b26514880 >+ 0x0000003b26460b90 <+304>: mov %rax,%rdi >+ 0x0000003b26460b93 <+307>: xor %eax,%eax >+ 0x0000003b26460b95 <+309>: movq $0x0,0x48(%rsp) >+ 0x0000003b26460b9e <+318>: mov %rcx,0x38(%rsp) >+ 0x0000003b26460ba3 <+323>: lea 0xd8(%rsp),%rcx >+ 0x0000003b26460bab <+331>: mov %rbx,0x8(%rsp) >+ 0x0000003b26460bb0 <+336>: mov %rcx,0x30(%rsp) >+ 0x0000003b26460bb5 <+341>: lea 0xdc(%rsp),%rcx >+ 0x0000003b26460bbd <+349>: mov %rcx,0x20(%rsp) >+ 0x0000003b26460bc2 <+354>: lea 0x15c573(%rip),%rcx # 0x3b265bd13c >+ 0x0000003b26460bc9 <+361>: mov %rcx,0x18(%rsp) >+ 0x0000003b26460bce <+366>: lea 0xe8(%rsp),%rcx >+ 0x0000003b26460bd6 <+374>: mov %rcx,0x10(%rsp) >+ 0x0000003b26460bdb <+379>: lea 0xec(%rsp),%rcx >+ 0x0000003b26460be3 <+387>: mov %rcx,(%rsp) >+ 0x0000003b26460be7 <+391>: lea 0xa9087(%rip),%rcx # 0x3b26509c75 >+ 0x0000003b26460bee <+398>: callq 0x3b264788f0 <IA__gtk_widget_style_get> >+ 0x0000003b26460bf3 <+403>: mov 0x70(%r15),%rax >+ 0x0000003b26460bf7 <+407>: mov 0x25c(%rax),%edx >+ 0x0000003b26460bfd <+413>: mov 0x118(%rax),%rdi >+ 0x0000003b26460c04 <+420>: mov %edx,0x8c(%rsp) >+ 0x0000003b26460c0b <+427>: sub $0x2,%edx >+ 0x0000003b26460c0e <+430>: mov %edx,0x6c(%rsp) >+ 0x0000003b26460c12 <+434>: callq 0x3b26263a00 <g_list_last@plt> >+ 0x0000003b26460c17 <+439>: test %rax,%rax >+ 0x0000003b26460c1a <+442>: mov %rax,%rbp >+ 0x0000003b26460c1d <+445>: jne 0x3b26460c31 <validate_row+465> >+ 0x0000003b26460c1f <+447>: jmp 0x3b26460c4b <validate_row+491> >+ 0x0000003b26460c21 <+449>: nopl 0x0(%rax) >+ 0x0000003b26460c28 <+456>: mov 0x10(%rbp),%rbp >+ 0x0000003b26460c2c <+460>: test %rbp,%rbp >+ 0x0000003b26460c2f <+463>: je 0x3b26460c4b <validate_row+491> >+ 0x0000003b26460c31 <+465>: callq 0x3b26467d00 <IA__gtk_tree_view_column_get_type> >+ 0x0000003b26460c36 <+470>: mov 0x0(%rbp),%rdi >+ 0x0000003b26460c3a <+474>: mov %rax,%rsi >+ 0x0000003b26460c3d <+477>: callq 0x3b26264160 <g_type_check_instance_cast@plt> >+ 0x0000003b26460c42 <+482>: testb $0x1,0xb0(%rax) >+ 0x0000003b26460c49 <+489>: je 0x3b26460c28 <validate_row+456> >+ 0x0000003b26460c4b <+491>: mov 0x70(%r15),%rax >+ 0x0000003b26460c4f <+495>: mov 0x118(%rax),%rdi >+ 0x0000003b26460c56 <+502>: callq 0x3b26265060 <g_list_first@plt> >+ 0x0000003b26460c5b <+507>: test %rax,%rax >+ 0x0000003b26460c5e <+510>: mov %rax,%rbx >+ 0x0000003b26460c61 <+513>: jne 0x3b26460c71 <validate_row+529> >+ 0x0000003b26460c63 <+515>: jmp 0x3b26460c8a <validate_row+554> >+ 0x0000003b26460c65 <+517>: nopl (%rax) >+ 0x0000003b26460c68 <+520>: mov 0x8(%rbx),%rbx >+ 0x0000003b26460c6c <+524>: test %rbx,%rbx >+ 0x0000003b26460c6f <+527>: je 0x3b26460c8a <validate_row+554> >+ 0x0000003b26460c71 <+529>: callq 0x3b26467d00 <IA__gtk_tree_view_column_get_type> >+ 0x0000003b26460c76 <+534>: mov (%rbx),%rdi >+ 0x0000003b26460c79 <+537>: mov %rax,%rsi >+ 0x0000003b26460c7c <+540>: callq 0x3b26264160 <g_type_check_instance_cast@plt> >+ 0x0000003b26460c81 <+545>: testb $0x1,0xb0(%rax) >+ 0x0000003b26460c88 <+552>: je 0x3b26460c68 <validate_row+520> >+ 0x0000003b26460c8a <+554>: mov 0x70(%r15),%rsi >+ 0x0000003b26460c8e <+558>: xor %eax,%eax >+ 0x0000003b26460c90 <+560>: movl $0x0,0x64(%rsp) >+ 0x0000003b26460c98 <+568>: mov 0x118(%rsi),%r12 >+ 0x0000003b26460c9f <+575>: test %r12,%r12 >+ 0x0000003b26460ca2 <+578>: je 0x3b26460e42 <validate_row+994> >+ 0x0000003b26460ca8 <+584>: lea 0xcc(%rsp),%rcx >+ 0x0000003b26460cb0 <+592>: lea 0xd0(%rsp),%rdx >+ 0x0000003b26460cb8 <+600>: mov %rbp,0x90(%rsp) >+ 0x0000003b26460cc0 <+608>: mov %rbx,%r13 >+ 0x0000003b26460cc3 <+611>: mov %eax,%ebp >+ 0x0000003b26460cc5 <+613>: mov %rcx,0x70(%rsp) >+ 0x0000003b26460cca <+618>: mov 0x88(%rsp),%ecx >+ 0x0000003b26460cd1 <+625>: mov %rdx,0x78(%rsp) >+ 0x0000003b26460cd6 <+630>: sub $0x1,%ecx >+ 0x0000003b26460cd9 <+633>: mov %ecx,0x9c(%rsp) >+ 0x0000003b26460ce0 <+640>: jmpq 0x3b26460d76 <validate_row+790> >+ 0x0000003b26460ce5 <+645>: nopl (%rax) >+ 0x0000003b26460ce8 <+648>: mov 0xe8(%rsp),%eax >+ 0x0000003b26460cef <+655>: add 0xcc(%rsp),%eax >+ 0x0000003b26460cf6 <+662>: mov 0x70(%r15),%rsi >+ 0x0000003b26460cfa <+666>: mov %eax,0xcc(%rsp) >+ 0x0000003b26460d01 <+673>: mov 0x38(%rsi),%edx >+ 0x0000003b26460d04 <+676>: cmp %edx,%eax >+ 0x0000003b26460d06 <+678>: cmovl %edx,%eax >+ 0x0000003b26460d09 <+681>: cmp %eax,%ebp >+ 0x0000003b26460d0b <+683>: cmovl %eax,%ebp >+ 0x0000003b26460d0e <+686>: testb $0x1,0x8(%rsi) >+ 0x0000003b26460d12 <+690>: jne 0x3b26460d2d <validate_row+717> >+ 0x0000003b26460d14 <+692>: mov 0xa0(%rsi),%rax >+ 0x0000003b26460d1b <+699>: test %rax,%rax >+ 0x0000003b26460d1e <+702>: je 0x3b26460ee0 <validate_row+1152> >+ 0x0000003b26460d24 <+708>: cmp %rax,%rbx >+ 0x0000003b26460d27 <+711>: je 0x3b26460f20 <validate_row+1216> >+ 0x0000003b26460d2d <+717>: mov 0xec(%rsp),%eax >+ 0x0000003b26460d34 <+724>: add 0xd0(%rsp),%eax >+ 0x0000003b26460d3b <+731>: mov %eax,0xd0(%rsp) >+ 0x0000003b26460d42 <+738>: cmpl $0x1,0x6c(%rsp) >+ 0x0000003b26460d47 <+743>: jbe 0x3b26460e10 <validate_row+944> >+ 0x0000003b26460d4d <+749>: mov 0xd0(%rsp),%eax >+ 0x0000003b26460d54 <+756>: cmp %eax,0x68(%rbx) >+ 0x0000003b26460d57 <+759>: jge 0x3b26460d68 <validate_row+776> >+ 0x0000003b26460d59 <+761>: mov %eax,0x68(%rbx) >+ 0x0000003b26460d5c <+764>: movl $0x1,0x64(%rsp) >+ 0x0000003b26460d64 <+772>: nopl 0x0(%rax) >+ 0x0000003b26460d68 <+776>: mov 0x8(%r12),%r12 >+ 0x0000003b26460d6d <+781>: test %r12,%r12 >+ 0x0000003b26460d70 <+784>: je 0x3b26460e40 <validate_row+992> >+ 0x0000003b26460d76 <+790>: mov (%r12),%rbx >+ 0x0000003b26460d7a <+794>: movzbl 0xb0(%rbx),%eax >+ 0x0000003b26460d81 <+801>: test $0x1,%al >+ 0x0000003b26460d83 <+803>: je 0x3b26460d68 <validate_row+776> >+ 0x0000003b26460d85 <+805>: movzwl (%r14),%ecx >+ 0x0000003b26460d89 <+809>: and $0x3fff,%ecx >+ 0x0000003b26460d8f <+815>: test $0x1,%ch >+ 0x0000003b26460d92 <+818>: je 0x3b26460d98 <validate_row+824> >+ 0x0000003b26460d94 <+820>: test $0x8,%al >+ 0x0000003b26460d96 <+822>: je 0x3b26460d68 <validate_row+776> >+ 0x0000003b26460d98 <+824>: cmpq $0x0,0x28(%r14) >+ 0x0000003b26460d9d <+829>: mov 0x58(%rsp),%rdx >+ 0x0000003b26460da2 <+834>: mov %rbx,%rdi >+ 0x0000003b26460da5 <+837>: mov (%rsi),%rsi >+ 0x0000003b26460da8 <+840>: setne %r8b >+ 0x0000003b26460dac <+844>: shr $0x2,%ecx >+ 0x0000003b26460daf <+847>: and $0x1,%ecx >+ 0x0000003b26460db2 <+850>: and $0x1,%r8d >+ 0x0000003b26460db6 <+854>: callq 0x3b26469510 <IA__gtk_tree_view_column_cell_set_cell_data> >+ 0x0000003b26460dbb <+859>: mov 0x70(%rsp),%r9 >+ 0x0000003b26460dc0 <+864>: mov 0x78(%rsp),%r8 >+ 0x0000003b26460dc5 <+869>: xor %ecx,%ecx >+ 0x0000003b26460dc7 <+871>: xor %edx,%edx >+ 0x0000003b26460dc9 <+873>: xor %esi,%esi >+ 0x0000003b26460dcb <+875>: mov %rbx,%rdi >+ 0x0000003b26460dce <+878>: callq 0x3b26469350 <IA__gtk_tree_view_column_cell_get_size> >+ 0x0000003b26460dd3 <+883>: mov 0x68(%rsp),%r10d >+ 0x0000003b26460dd8 <+888>: test %r10d,%r10d >+ 0x0000003b26460ddb <+891>: je 0x3b26460ce8 <validate_row+648> >+ 0x0000003b26460de1 <+897>: mov 0xd8(%rsp),%r9d >+ 0x0000003b26460de9 <+905>: test %r9d,%r9d >+ 0x0000003b26460dec <+908>: je 0x3b26460ec8 <validate_row+1128> >+ 0x0000003b26460df2 <+914>: mov 0xe0(%rsp),%ebp >+ 0x0000003b26460df9 <+921>: mov 0x70(%r15),%rsi >+ 0x0000003b26460dfd <+925>: add %ebp,%ebp >+ 0x0000003b26460dff <+927>: add 0xd4(%rsp),%ebp >+ 0x0000003b26460e06 <+934>: jmpq 0x3b26460d0e <validate_row+686> >+ 0x0000003b26460e0b <+939>: nopl 0x0(%rax,%rax,1) >+ 0x0000003b26460e10 <+944>: mov (%r12),%rdx >+ 0x0000003b26460e14 <+948>: cmp %r13,%rdx >+ 0x0000003b26460e17 <+951>: je 0x3b26460f70 <validate_row+1296> >+ 0x0000003b26460e1d <+957>: cmp %rdx,0x90(%rsp) >+ 0x0000003b26460e25 <+965>: je 0x3b26460f70 <validate_row+1296> >+ 0x0000003b26460e2b <+971>: add 0xdc(%rsp),%eax >+ 0x0000003b26460e32 <+978>: mov %eax,0xd0(%rsp) >+ 0x0000003b26460e39 <+985>: jmpq 0x3b26460d54 <validate_row+756> >+ 0x0000003b26460e3e <+990>: xchg %ax,%ax >+ 0x0000003b26460e40 <+992>: mov %ebp,%eax >+ 0x0000003b26460e42 <+994>: cmpl $0x3,0x8c(%rsp) >+ 0x0000003b26460e4a <+1002>: je 0x3b26460e56 <validate_row+1014> >+ 0x0000003b26460e4c <+1004>: cmpl $0x1,0x8c(%rsp) >+ 0x0000003b26460e54 <+1012>: jne 0x3b26460e5d <validate_row+1021> >+ 0x0000003b26460e56 <+1014>: add 0xdc(%rsp),%eax >+ 0x0000003b26460e5d <+1021>: mov 0x8(%r14),%rcx >+ 0x0000003b26460e61 <+1025>: mov 0x28(%r14),%rbx >+ 0x0000003b26460e65 <+1029>: mov 0x24(%r14),%edx >+=> 0x0000003b26460e69 <+1033>: mov 0x24(%rcx),%edi >+ 0x0000003b26460e6c <+1036>: mov 0x10(%r14),%rcx >+ 0x0000003b26460e70 <+1040>: mov 0x24(%rcx),%esi >+ 0x0000003b26460e73 <+1043>: xor %ecx,%ecx >+ 0x0000003b26460e75 <+1045>: test %rbx,%rbx >+ 0x0000003b26460e78 <+1048>: je 0x3b26460e80 <validate_row+1056> >+ 0x0000003b26460e7a <+1050>: mov (%rbx),%rcx >+ 0x0000003b26460e7d <+1053>: mov 0x24(%rcx),%ecx >+ 0x0000003b26460e80 <+1056>: sub %edi,%edx >+ 0x0000003b26460e82 <+1058>: sub %esi,%edx >+ 0x0000003b26460e84 <+1060>: sub %ecx,%edx >+ 0x0000003b26460e86 <+1062>: cmp %eax,%edx >+ 0x0000003b26460e88 <+1064>: je 0x3b26460ea4 <validate_row+1092> >+ 0x0000003b26460e8a <+1066>: mov 0x80(%rsp),%rdi >+ 0x0000003b26460e92 <+1074>: mov %eax,%edx >+ 0x0000003b26460e94 <+1076>: mov %r14,%rsi >+ 0x0000003b26460e97 <+1079>: callq 0x3b2639c990 <_gtk_rbtree_node_set_height> >+ 0x0000003b26460e9c <+1084>: movl $0x1,0x64(%rsp) >+ 0x0000003b26460ea4 <+1092>: mov 0x80(%rsp),%rdi >+ 0x0000003b26460eac <+1100>: mov %r14,%rsi >+ 0x0000003b26460eaf <+1103>: callq 0x3b2639b3a0 <_gtk_rbtree_node_mark_valid> >+ 0x0000003b26460eb4 <+1108>: mov 0x70(%r15),%rax >+ 0x0000003b26460eb8 <+1112>: orb $0x80,0x1e2(%rax) >+ 0x0000003b26460ebf <+1119>: jmpq 0x3b26460aab <validate_row+75> >+ 0x0000003b26460ec4 <+1124>: nopl 0x0(%rax) >+ 0x0000003b26460ec8 <+1128>: mov 0xe0(%rsp),%ebp >+ 0x0000003b26460ecf <+1135>: mov 0x70(%r15),%rsi >+ 0x0000003b26460ed3 <+1139>: lea 0x2(%rbp,%rbp,1),%ebp >+ 0x0000003b26460ed7 <+1143>: jmpq 0x3b26460d0e <validate_row+686> >+ 0x0000003b26460edc <+1148>: nopl 0x0(%rax) >+ 0x0000003b26460ee0 <+1152>: mov 0x118(%rsi),%rax >+ 0x0000003b26460ee7 <+1159>: test %rax,%rax >+ 0x0000003b26460eea <+1162>: jne 0x3b26460f05 <validate_row+1189> >+ 0x0000003b26460eec <+1164>: jmpq 0x3b26460d2d <validate_row+717> >+ 0x0000003b26460ef1 <+1169>: nopl 0x0(%rax) >+ 0x0000003b26460ef8 <+1176>: mov 0x8(%rax),%rax >+ 0x0000003b26460efc <+1180>: test %rax,%rax >+ 0x0000003b26460eff <+1183>: je 0x3b26460d2d <validate_row+717> >+ 0x0000003b26460f05 <+1189>: mov (%rax),%rdx >+ 0x0000003b26460f08 <+1192>: testb $0x1,0xb0(%rdx) >+ 0x0000003b26460f0f <+1199>: je 0x3b26460ef8 <validate_row+1176> >+ 0x0000003b26460f11 <+1201>: cmp %rdx,%rbx >+ 0x0000003b26460f14 <+1204>: jne 0x3b26460d2d <validate_row+717> >+ 0x0000003b26460f1a <+1210>: nopw 0x0(%rax,%rax,1) >+ 0x0000003b26460f20 <+1216>: mov 0x9c(%rsp),%edx >+ 0x0000003b26460f27 <+1223>: mov 0xec(%rsp),%eax >+ 0x0000003b26460f2e <+1230>: imul 0x258(%rsi),%edx >+ 0x0000003b26460f35 <+1237>: add 0xd0(%rsp),%eax >+ 0x0000003b26460f3c <+1244>: add %edx,%eax >+ 0x0000003b26460f3e <+1246>: mov %eax,0xd0(%rsp) >+ 0x0000003b26460f45 <+1253>: mov 0x8(%rsi),%edx >+ 0x0000003b26460f48 <+1256>: and $0x3,%edx >+ 0x0000003b26460f4b <+1259>: cmp $0x2,%edx >+ 0x0000003b26460f4e <+1262>: jne 0x3b26460d42 <validate_row+738> >+ 0x0000003b26460f54 <+1268>: mov 0x88(%rsp),%edx >+ 0x0000003b26460f5b <+1275>: imul 0x38(%rsi),%edx >+ 0x0000003b26460f5f <+1279>: add %edx,%eax >+ 0x0000003b26460f61 <+1281>: mov %eax,0xd0(%rsp) >+ 0x0000003b26460f68 <+1288>: jmpq 0x3b26460d42 <validate_row+738> >+ 0x0000003b26460f6d <+1293>: nopl (%rax) >+ 0x0000003b26460f70 <+1296>: cvtsi2sd %eax,%xmm0 >+ 0x0000003b26460f74 <+1300>: cvtsi2sdl 0xdc(%rsp),%xmm1 >+ 0x0000003b26460f7d <+1309>: mulsd 0xa6143(%rip),%xmm1 # 0x3b265070c8 >+ 0x0000003b26460f85 <+1317>: addsd %xmm1,%xmm0 >+ 0x0000003b26460f89 <+1321>: cvttsd2si %xmm0,%eax >+ 0x0000003b26460f8d <+1325>: mov %eax,0xd0(%rsp) >+ 0x0000003b26460f94 <+1332>: jmpq 0x3b26460d54 <validate_row+756> >+ 0x0000003b26460f99 <+1337>: mov (%rcx),%rdi >+ 0x0000003b26460f9c <+1340>: lea 0xa0(%rsp),%rbx >+ 0x0000003b26460fa4 <+1348>: xor %edx,%edx >+ 0x0000003b26460fa6 <+1350>: mov %rbx,%rsi >+ 0x0000003b26460fa9 <+1353>: callq 0x3b26436cd0 <IA__gtk_tree_model_get_iter> >+ 0x0000003b26460fae <+1358>: mov 0x70(%r15),%rcx >+ 0x0000003b26460fb2 <+1362>: mov 0x240(%rcx),%rax >+ 0x0000003b26460fb9 <+1369>: jmpq 0x3b26460b28 <validate_row+200> >+End of assembler dump. >-- >1.7.7.6 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 811147
: 578538