Check-in [dcedb5981a]
Overview
Comment: | Stub debugging plugin. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dcedb5981a8166128d0a37f458daa356 |
User & Date: | mario on 2015-05-26 02:07:50 |
Other Links: | manifest | tags |
Context
2015-05-26
| ||
02:09 | Move broken plugins into disabled/ folder. check-in: 75f6084791 user: mario tags: trunk | |
02:07 | Stub debugging plugin. check-in: dcedb5981a user: mario tags: trunk | |
01:07 | Update sha1whateverchecksum for 0install. check-in: 90c4647665 user: mario tags: trunk | |
Changes
Added contrib/dev_faulthandler.py version [af0b554041].
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # api: python # title: faulthandler # description: capture fatal errors / memory fauls / Gtk and threading bugs # version: -1 # type: io # category: debug # priority: development # # Debug Gtk/glibs/python/threading crashes. # # * Gdk:ERROR:/build/buildd/gtk+2.0-2.24.23/gdk/gdkregion-generic.c:1110:miUnionNonO: # assertion failed: (y1 < y2) # * foobar: double free or corruption (fasttop): 0x... import faulthandler faulthandler.enable() # file=open("/tmp/st2.log", "a+"), all_threads=True class dev_faulthandler(object): def __init__(sefl, *x, **kw): pass |