Python segfault

Hello,
Follows is a test program I have written. I am attempting to do multi-process inserts. Sometimes the program appears to deadlock and every other time, when it completes, it segfaults at the end complaining that a database handle is still in use. I am opening and deleting the container in the parent process and using the multiprocess module to handle the forking and IPC for me.
from bsddb3.db import *
from dbxml import *
import time
from multiprocessing import Process, Pool, Queue
numberOfItems = 100000
xml = """<item><type/></item>"""
def strAsDocument(mgr, str):
doc = mgr.createDocument()
doc.setContent(str)
return doc
def insertDoc(container, environment, mgr, number):
xtxn = mgr.createTransaction()
uc = mgr.createUpdateContext()
names = [];
print "inserting " + str(number) + " records"
for i in xrange(number):
name = container.putDocument(xtxn, 'item', xml, uc, DBXML_GEN_NAME)
names.append(name)
xtxn.commit()
print "done";
del uc
del xtxn
def go():
environment = DBEnv()
environment.set_cachesize(0, 25 * 1024 * 1024)
environment.open("env", DB_CREATE|DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_MPOOL|DB_INIT_TXN|DB_RECOVER|DB_THREAD, 0)
try:
config = XmlContainerConfig()
config.setAllowCreate(True)
config.setTransactional(True)
mgr = XmlManager(environment, 0)
uc = mgr.createUpdateContext()
try:
mgr.removeContainer("test.dbxml")
except:
pass
container = mgr.openContainer("test.dbxml", config)
container.setAutoIndexing(False, uc)
before = time.time()
ps = []
for i in range(5):
p = Process(target=insertDoc, args=(container, environment, mgr, 2000))
p.start()
ps.append(p)
for p in ps:
p.join()
print time.time() - before
del container
del mgr
del uc
except XmlException, inst:
print "XmlException (", inst.exceptionCode,"): ", inst.what
if inst.exceptionCode == DATABASE_ERROR:
print "Database error code:",inst.dbError
environment.close(0)
for i in range(5):
go()
gives me:
[root@vladivar python]# python test.py
inserting 2000 records
inserting 2000 records
inserting 2000 records
inserting 2000 records
inserting 2000 records
done
done
done
done
done
2.8827149868
Traceback (most recent call last):
File "test.py", line 72, in <module>
go()
File "test.py", line 69, in go
environment.close(0)
bsddb3.db.DBInvalidArgError: (22, 'Invalid argument -- Open database handle: test.dbxml/secondary_configuration')
Segmentation fault
Thanks.

This is very helpful, thanks.
w.r.t the GIL it was this posting that put me off: http://www.dabeaz.com/blog/2010/01/python-gil-visualized.html. But on reflection I think you're right; it's probably not an issue because the application will most likely be IO-bound. I will try the threading module on your recommendation (I much prefer threading anyway). I wasn't worried about the expense of forking as I would do this rarely (when a worker was started, which would service multiple requests) and it'll never be running on Windows. It appears though that controlling the database handles through a fork() is harder than I expected.
Considering I am going to now try the threading module this might seem a mute point but I did rewrite my test case to open the environment in each process instead of before fork()ing and I had deadlock issues, I'd like to understand why. Do I understand you correctly that I need to serialize opening of the environment and containers? I understand that creation needs to be serialized but opening too? In case you are interested here is my deadlocking (non-segfaulting) test case:
from bsddb3.db import *
from dbxml import *
import time
from multiprocessing import Process
xml = """<item><type/></item>"""
class DBTest:
    def insertDoc(self, number):
        uc = self.mgr.createUpdateContext()
        try:
            names = [];
            print "inserting " + str(number) + " records"
            for i in xrange(number):
                name = self.container.putDocument('item', xml, uc, DBXML_GEN_NAME)
                names.append(name)
            print "done";
        finally:
            del uc
    def joinEnvironment(self):
        self.environment = DBEnv()
        self.environment.open("env", DB_JOINENV|DB_THREAD)
    @staticmethod
    def createEnvironment():
        environment = DBEnv()
        environment.set_cachesize(0, 25 * 1024 * 1024)
        environment.open("env", DB_CREATE|
                         DB_INIT_LOCK|
                         DB_INIT_MPOOL|
                         DB_THREAD, 0)
        environment.close(0)
    def createContainers(self):
        mgr = XmlManager(self.environment, 0)
        uc = mgr.createUpdateContext()
        config = XmlContainerConfig()
        config.setAllowCreate(True)
        config.setThreaded(True)
        try:
            mgr.removeContainer("test.dbxml")
        except:
            pass
        container = mgr.openContainer("test.dbxml", config)
        container.setAutoIndexing(False, uc)
        del container
    def openContainers(self):
        config = XmlContainerConfig()
        config.setAllowCreate(False)
        config.setThreaded(True)
        self.mgr = XmlManager(self.environment, 0)
        self.container = self.mgr.openContainer("test.dbxml", config)
    def cleanup(self):
        if hasattr(self, 'container'):
            del self.container
        if hasattr(self, 'mgr'):
            del self.mgr
        if hasattr(self, 'environment'):
            self.environment.close(0)
            del self.environment
# called by fork()ed process
def doProcess(num):
    test = DBTest()
    try:
        test.joinEnvironment()
        test.openContainers()
        test.insertDoc(num)
    except XmlException, inst:
        print "XmlException (", inst.exceptionCode,"): ", inst.what
        if inst.exceptionCode == DATABASE_ERROR:
            print "Database error code:",inst.dbError
    finally:
        test.cleanup()
# main
DBTest.createEnvironment()
test = DBTest()
test.joinEnvironment()
test.createContainers()
test.cleanup()
ps = []
for i in range(3):
    p = Process(target=doProcess, args=(5000,))
    p.start()
    ps.append(p)
for p in ps:
   p.join()

Similar Messages

  • Segfault in python, perhaps due to lapack update?

    Not sure if this is the right forum, but here goes...
    I write physics simulations (for university) using numpy/scipy/matplotlib under archlinux. Some code which was recently working fine started segfaulting (all the python script would spit out was "Segmentation Fault"). It wasn't anything particularly unusual, just plotting some lines inside a loop. I initially tried recompiling numpy and matplotlib, to no avail. Then, I tried rolling back several recent updates to find the source of the problem, and when I rolled lapack-3.2-1 back to lapack-3.1.1-4, the segfaults disappeared, and everything is working as usual.
    I don't feel like I understand the source of the problem well enough to attempt to file a bug report at this time, but I post this topic in the hope that perhaps someone else with a similar problem will find it useful, or someone smarter than me might be able to figure out what's going on.
    edit: I neglected to mention that this is on x64 architecture.
    Last edited by rgwzlfw (2009-01-15 10:10:17)

    Well, I can't really help much, except give a couple standard-ish debugging tips (assuming you have, first of all, re-upgraded lapack):
    - Make the first thing your script does is quit(), before anything else. If the script segfaults under these conditions (ie, doing "nothing"), something is really up with the compiler since it's crashing before it even starts executing code, and you should definitely submit a high-priority bugreport. If, however, python likes you (:P) and it doesn't crash, start moving the quit() down the file until python does crash, and note what's going on at that point - perhaps try rearranging the code to see if you can make everything like each other by reformulating your algorithms.
    - If you can, submit the script to the Python mailing list with information gleaned from the previous point. This will be the biggest help to the python devs as they'll be able to watch Python as it executes the file and (hopefully) see what's going on.
    -dav7

  • Random segfaults when doing an xupdate at the container level

    I am having an error where updates to a container are causing segfaults in weird ways. I am on 2.4.16 with the latest patch applied. my query is attempting to mark a node as 'empty'...
    > for $q in collection('dbxml:/rx.dbxml')//results[text()="http://myurl.com/results"] return (replace value of node $q with '')
    Its replicable on certain containers, but not others, making me think that an index is out of whack or something weird is going on, but doc() updates still work so I'm not really sure why the container keyword would be different. All containers are configured exactly the same way, its just that some won't let me run this query without barf city. To top off the weirdness, the transactions are actually successful in the end once I get the db back up and recovered from the segv.
    I have some ideas but none of them really explain the kinda sporadic nature of the issue.
    1) I am creating a query context before using this call - should I have an update context as well?
    2) Could an index be hosed somewhere? Why would that happen? (disclaimer - I've been through several migrations and seen similar bugs along the way)
    3) Could the fact that the text in the node is a url make it unhappy?
    I have pasted a backtrace below of where the segv happens if it helps at all.
    Thanks in advance!
    eleddy
    Program received signal SIGSEGV, Segmentation fault.
    NsDomElement (this=0x68106e0, node=<value optimized out>, document=<value optimized out>) at NsDom.cpp:107
    107          if (isDocumentNode()) {
    Current language: auto; currently c++
    (gdb) bt
    #0 NsDomElement (this=0x68106e0, node=<value optimized out>, document=<value optimized out>) at NsDom.cpp:107
    #1 0x00002ae326e0c8e1 in DbXml::NsDomElement::getElemNext (this=0x6810b40) at NsDom.cpp:320
    #2 0x00002ae326e500e4 in DbXml::ElementDescendantAxis::nextNode (this=0x6826470, context=<value optimized out>) at DbXmlNodeImpl.cpp:2176
    #3 0x00002ae326e51756 in DbXml::DbXmlAxis::next (this=0x6826470, context=0x6816128) at DbXmlNodeImpl.cpp:1642
    #4 0x00002ae326e48c0d in DbXml::ResultAdapter::next (this=<value optimized out>, context=0x6816128) at ../dataItem/DbXmlResult.hpp:44
    #5 0x00002ae326ed1a70 in DbXml::StepIterator::next (this=0x68b78a0, context=0x6816128) at StepQP.cpp:765
    #6 0x00002ae326ebbae4 in DbXml::PredicateFilter::doNext (this=0x68b7b10, context=0x6816128) at PredicateFilterQP.cpp:459
    #7 0x00002ae326eba3d0 in DbXml::PredicateFilter::next (this=0x68b7b10, context=0x6816128) at PredicateFilterQP.cpp:420
    #8 0x00002ae326eb9b2e in DbXml::QueryPlanToASTResult::next (this=0x68191d0, context=0x6816128) at QueryPlanToAST.cpp:63
    #9 0x00002ae327642947 in ForTupleResult::next () from /usr/local/xmldb/lib/libxqilla.so.4
    #10 0x00002ae327641253 in XQReturn::createUpdateList () from /usr/local/xmldb/lib/libxqilla.so.4
    #11 0x00002ae3277509d0 in UApplyUpdates::createSequence () from /usr/local/xmldb/lib/libxqilla.so.4
    #12 0x00002ae32762162e in ASTNodeImpl::CreateSequenceResult::getResult () from /usr/local/xmldb/lib/libxqilla.so.4
    #13 0x00002ae327749960 in LazySequenceResult::next () from /usr/local/xmldb/lib/libxqilla.so.4
    #14 0x00002ae327662668 in XQQuery::QueryResult::next () from /usr/local/xmldb/lib/libxqilla.so.4
    #15 0x00002ae326dc438c in DbXml::LazyDIResults::hasNext (this=0x6824620) at Results.cpp:358
    #16 0x00002ae326dd8ca4 in DbXml::XmlResults::hasNext (this=<value optimized out>) at XmlResults.cpp:74
    #17 0x00002ae326d9428d in DbXml::QueryExpression::execute (this=0x682ea30, txn=0x6802570, contextItem=0x0, context=<value optimized out>, flags=<value optimized out>)
    at QueryExpression.cpp:147
    #18 0x00002ae326dd04ed in DbXml::XmlQueryExpression::execute (this=<value optimized out>, context=@0x30, flags=0) at XmlQueryExpression.cpp:92

    In cases like these it's best to give more detail, such as:
    o platform/compiler/version
    RHEL 4 64bit/gcc4.1.2. using python/swig wrapperso container type, index type
    default container types, with these options: DB_CREATE|DB_EXCL|DBXML_TRANSACTIONAL. indexes are all node indexeso indexes on the container
    5 node indexes, very simpleo concurrent vs single-threaded access
    single writer multiple readers -> we are having really good concurrency success so I don't think that' the issue. I'm following the rule to the T hereo configuration specified on environment and containers
    containers created with DB_CREATE|DB_EXCL|DBXML_TRANSACTIONAL and opened with DBXML_TRANSACTIONAL. environment. environments are created with DB_CREATE|DB_THREAD|DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_MPOOL|DB_INIT_TXN and the config is below
    environment.set_lk_detect(DB_LOCK_MINWRITE)
    environment.set_lk_max_lockers(20000)
    environment.set_lk_max_locks(10000)
    environment.set_lk_max_objects(5000)
    environment.set_lg_max(104857600)
    environment.set_lg_bsize(20971520)
    environment.set_lg_regionmax(41943040)
    environment.set_timeout(3000000, DB_SET_TXN_TIMEOUT)That sort of thing. Intermittent problems are often related to either unintended concurrency in an application or uninitialized variables. The latter can often be detected using valgrind if your are on a Linux platform. It also wouldn't hurt to reindex the problem containers to see if that has an effect.
    I will try reindexing in a staging environment, but this database is pretty big and they are live so its not really an option to reindex all the time (plus its not like the indexing can really happen while people are using it which makes it difficult). I've already dealt with a similar indexing bug in the past and I thought the latest version fixed that problem. I will see what valgrind can pull up but like I said I'm relying on python/swig and valgrind can be pretty misleading with PyMallocThanks for sending a stack but it's not all that illuminating. Another thing is to know if the issue is reproducible in a debug build where you'd get a better stack.
    I did a fresh install already with the latest patches and that didn't solve the issue. the forum has been really good at diagnosing without taking it to the debug build level so if things get bad or if you need more info I'll take it to that level but perhaps someone has similar issues or it rings a bell that we can explore first

  • [solved]many segfault after a pacman -Syu

    bad luck gnome-* got segfault after a pacman -Syu. that including gedit, empathy, nautilus, epiphany, gnome-screensaver.... gnome is simply half dead!!! somebody help!
    [update]pls scroll down to bsdson.tw #9 for a work around.
    Last edited by semson (2011-09-04 14:58:19)

    here is the pacman log, x86_64
    [2011-09-03 20:15] Running 'pacman -Syu'
    [2011-09-03 20:15] synchronizing package lists
    [2011-09-03 20:15] starting full system upgrade
    [2011-09-03 20:18] removed pygobject-devel (2.28.6-1)
    [2011-09-03 20:18] removed py3gobject (2.28.6-1)
    [2011-09-03 20:18] removed pygobject (2.28.6-1)
    [2011-09-03 20:18] upgraded libglapi (7.11-1 -> 7.11-2)
    [2011-09-03 20:18] upgraded libgl (7.11-1 -> 7.11-2)
    [2011-09-03 20:18] upgraded ati-dri (7.11-1 -> 7.11-2)
    [2011-09-03 20:18] upgraded bzr (2.3.4-1 -> 2.4.0-1)
    [2011-09-03 20:18] upgraded ca-certificates (20110502-1 -> 20110502+nmu1-1)
    [2011-09-03 20:18] upgraded gnutls (3.0.1-1 -> 3.0.2-1)
    [2011-09-03 20:18] upgraded libcups (1.4.8-2 -> 1.5.0-1)
    [2011-09-03 20:18] upgraded gtk-update-icon-cache (2.24.5-3 -> 2.24.6-2)
    [2011-09-03 20:18] upgraded gtk2 (2.24.5-3 -> 2.24.6-2)
    [2011-09-03 20:18] upgraded nss (3.12.11-1 -> 3.12.11-3)
    [2011-09-03 20:18] upgraded libevent (2.0.12-1 -> 2.0.13-1)
    [2011-09-03 20:19] upgraded chromium (13.0.782.215-1 -> 13.0.782.218-1)
    [2011-09-03 20:19] upgraded clutter-gtk (1.0.0-1 -> 1.0.2-1)
    [2011-09-03 20:19] upgraded evolution-data-server (3.0.2.1-2 -> 3.0.3-1)
    [2011-09-03 20:19] upgraded fakeroot (1.17-1 -> 1.18-1)
    [2011-09-03 20:19] upgraded firefox (6.0-1 -> 6.0.1-1)
    [2011-09-03 20:19] upgraded firefox-i18n (6.0-2 -> 6.0.1-1)
    [2011-09-03 20:19] updating gtk immodules... done.
    [2011-09-03 20:19] upgraded gcin (1.6.4-2 -> 1.6.5-1)
    [2011-09-03 20:19] upgraded icedtea-web (1.1.1-1 -> 1.1.2-1)
    [2011-09-03 20:19] upgraded imlib2 (1.4.4-1 -> 1.4.5-1)
    [2011-09-03 20:19] upgraded lib32-libcups (1.4.5-2 -> 1.5.0-1)
    [2011-09-03 20:19] upgraded lib32-gtk2 (2.24.5-1 -> 2.24.6-1)
    [2011-09-03 20:19] upgraded lib32-keyutils (1.4-1 -> 1.5.2-1)
    [2011-09-03 20:19] upgraded libdvbpsi (0.2.0-1 -> 0.2.1-1)
    [2011-09-03 20:19] upgraded libreoffice-zh-TW (3.4.2-1 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libreoffice-common (3.4.2-2 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libreoffice-calc (3.4.2-2 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libreoffice-extension-pdfimport (3.4.2-2 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libreoffice-extension-presentation-minimizer (3.4.2-2 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libreoffice-gnome (3.4.2-2 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libreoffice-impress (3.4.2-2 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libreoffice-writer (3.4.2-2 -> 3.4.3-1)
    [2011-09-03 20:19] upgraded libwnck (2.30.6-2 -> 2.30.7-1)
    [2011-09-03 20:19] upgraded linux-firmware (20110727-1 -> 20110822-1)
    [2011-09-03 20:19] >>> Updating module dependencies. Please wait ...
    [2011-09-03 20:19] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2011-09-03 20:19] ==> Building image from preset: 'default'
    [2011-09-03 20:19] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2011-09-03 20:19] ==> Starting build: 3.0-ARCH
    [2011-09-03 20:19] -> Parsing hook: [base]
    [2011-09-03 20:19] -> Parsing hook: [udev]
    [2011-09-03 20:19] -> Parsing hook: [autodetect]
    [2011-09-03 20:19] -> Parsing hook: [pata]
    [2011-09-03 20:19] -> Parsing hook: [scsi]
    [2011-09-03 20:19] -> Parsing hook: [sata]
    [2011-09-03 20:19] -> Parsing hook: [filesystems]
    [2011-09-03 20:19] -> Parsing hook: [usbinput]
    [2011-09-03 20:19] ==> Generating module dependencies
    [2011-09-03 20:19] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2011-09-03 20:19] 7210 blocks
    [2011-09-03 20:19] ==> Image generation successful
    [2011-09-03 20:19] ==> Building image from preset: 'fallback'
    [2011-09-03 20:19] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2011-09-03 20:19] ==> Starting build: 3.0-ARCH
    [2011-09-03 20:19] -> Parsing hook: [base]
    [2011-09-03 20:19] -> Parsing hook: [udev]
    [2011-09-03 20:19] -> Parsing hook: [pata]
    [2011-09-03 20:19] -> Parsing hook: [scsi]
    [2011-09-03 20:19] -> Parsing hook: [sata]
    [2011-09-03 20:19] -> Parsing hook: [filesystems]
    [2011-09-03 20:19] -> Parsing hook: [usbinput]
    [2011-09-03 20:19] ==> Generating module dependencies
    [2011-09-03 20:19] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2011-09-03 20:20] 23822 blocks
    [2011-09-03 20:20] ==> Image generation successful
    [2011-09-03 20:20] upgraded linux (3.0.3-1 -> 3.0.4-1)
    [2011-09-03 20:20] upgraded linux-headers (3.0.3-1 -> 3.0.4-1)
    [2011-09-03 20:20] upgraded mesa (7.11-1 -> 7.11-2)
    [2011-09-03 20:20] upgraded polkit (0.101-2 -> 0.102-1)
    [2011-09-03 20:20] installed pygobject2-devel (2.28.6-1)
    [2011-09-03 20:20] installed python-gobject2 (2.28.6-1)
    [2011-09-03 20:20] installed python2-gobject2 (2.28.6-1)
    [2011-09-03 20:20] upgraded qt (4.7.3-3 -> 4.7.4-1)
    [2011-09-03 20:20] upgraded telepathy-logger (0.2.10-1 -> 0.2.10-2)
    [2011-09-03 20:20] upgraded vim-runtime (7.3.266-1 -> 7.3.289-1)
    [2011-09-03 20:20] upgraded vim (7.3.266-1 -> 7.3.289-1)
    [2011-09-03 20:20] upgraded wget (1.13.1-1 -> 1.13.3-1)
    [2011-09-03 20:20] Updating font cache... done.
    [2011-09-03 20:20] wqy-zenhei post install message
    [2011-09-03 20:20] ==> Special Note: By default, we disabled the embedded bitmaps,
    [2011-09-03 20:20] so that the characters will be displayed as Anti-aliased glyphs.
    [2011-09-03 20:20] For those who want to use bitmap font rendering (for 9pt-12pt),
    [2011-09-03 20:20] you can modify the enclosed 44-wqy-zenhei.conf and change the line
    [2011-09-03 20:20] <edit name=\"embeddedbitmap\"><bool>false</bool></edit>
    [2011-09-03 20:20] to
    [2011-09-03 20:20] <edit name=\"embeddedbitmap\"><bool>true</bool></edit>"
    [2011-09-03 20:20]
    [2011-09-03 20:20] Remove 44-wqy-zenhei.conf and 66-wqy-zenhei-sharp.conf symlinks
    [2011-09-03 20:20] from /etc/fonts/conf.d/ directory if you have problems with this
    [2011-09-03 20:20] package.
    [2011-09-03 20:20] upgraded wqy-zenhei (0.9.45-1 -> 0.9.45-2)
    [2011-09-03 20:20] upgraded xulrunner (6.0-2 -> 6.0.1-1)
    Last edited by semson (2011-09-04 07:10:04)

  • Problems with environments and transactional mode in the Python API

    Hello everyone,
    I have been having problems with the Python API, and I wonder if anyone can comment? I am using DB XML version 2.2.13, with python 2.3 (RedHat linux WS 4.0) and python 2.4 (SuSE 10.1) with identical results. I started with a simple example:
    #!/usr/bin/python
    """XPath example from http://www.w3schools.com/xpath/default.asp
    ported to DbXML
    from bsddb3.db import *
    from dbxml import *
    books = """<?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
      [xml data omitted for brevity]
    </bookstore>"""
    if __name__ == "__main__":
        conFlags = DB_CREATE | DB_NOMMAP
        myMgr = XmlManager()
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)So far, so good - this works, and creates a container books.dbxml that I can open and query. Next, I try to instantiate the XmlManager using an environment:
    if __name__ == "__main__":
        envFlags = DB_CREATE | DB_PRIVATE
        conFlags = DB_CREATE | DB_EXCL | DB_NOMMAP
        myEnv = DBEnv()
        myEnv.open("/home/pkeller/dbxml_tests", envFlags, 0)
        myMgr = XmlManager(myEnv, DBXML_ADOPT_DBENV)
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)This fails with the following output:
    Traceback (most recent call last):
      File "w3school_xpath_c2.py", line 60, in ?
        container = myMgr.createContainer("books.dbxml")
      File "/scratch_bernoulli/pkeller/dbxml/install/lib/python2.3/site-packages/dbxml.py", line 125, in createContainer
        def createContainer(*args): return dbxml.XmlManagercreateContainer(*args)
    RuntimeError: Error: Invalid argument
    Segmentation faultA bit odd - I can't find anything in the docs about the required arguments to XmlManager.createContainer being different if an environment has been used explicitly.
    Anyway, I persevered (my aim being to use transactional mode in Python). Changing the environment and container flags like so:
        envFlags = DB_CREATE  | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN | DB_PRIVATE
        conFlags = DB_CREATE  | DB_EXCL | DBXML_TRANSACTIONAL | DB_NOMMAPThis change allowed the script to run, outputting the single classic line:
    Segmentation fault(the C++ API docs at http://www.sleepycat.com/xmldocs/gsg_xml/cxx/transaction.html#initializetransaction are incorrect by the way - there is no flag DB_TRANSACTIONAL).
    In spite of the segfault, the file "books.dbxml" was produced and could be queried by another application. A transaction log file "log.0000000001" was also written (10485760 bytes long).
    Running this last example again with "python -v" showed that the segfault was being produced during the python's cleanup phase:
    # clear __builtin__._
    # clear sys.path
    # clear sys.argv
    # clear sys.ps1
    # clear sys.ps2
    # clear sys.exitfunc
    # clear sys.exc_type
    # clear sys.exc_value
    # clear sys.exc_traceback
    # clear sys.last_type
    # clear sys.last_value
    # clear sys.last_traceback
    # clear sys.path_hooks
    # clear sys.path_importer_cache
    # clear sys.meta_path
    # restore sys.stdin
    # restore sys.stdout
    # restore sys.stderr
    # cleanup __main__
    Segmentation faultCan anyone clarify what is going on? I had been hoping to deploy DB XML as an alternative to something more admin-heavy, but with this behaviour that would be hard to justify. A dirty exit from Python means that no-one will consider trusting their data to this engine (or am I doing something wrong?).
    Regards,
    Peter.

    Peter,
    Your first failure -- invalid argument -- was due to an invalid combination of
    flags to DBEnv.open(). Along with DB_CREATE you need at least DB_INIT_MPOOL.
    As you can see, it worked once you added more flags.
    The second, cleanup problem (segmentation fault) is the result of out of order
    destruction of objects. This is fixed in the next release (later this year), but
    you can work around it by ensuring that your XmlContainer and XmlManager
    objects are deleted/cleaned up before the DBEnv object.
    Python will cleanup in reverse order of creation, unless you perform explicit
    deletions, which is also fine (e.g. del container, del myMgr).
    Explicit deletion is always safe.
    Regards,
    George

  • Rhythmbox Segfaults after latest update

    Today I updated the following packages which should affect Rhythmbox:
    gvfs (1.8.0-1 -> 1.8.1-1)
    gvfs-afc (1.8.0-1 -> 1.8.1-1)
    totem (3.0.0-2 -> 3.0.1-1)
    totem-plugin (3.0.0-2 -> 3.0.1-1)
    libsoup (2.34.0-1 -> 2.34.1-1)
    libsoup-gnome (2.34.0-1 -> 2.34.1-1)
    rhythmbox (2.90.1-2 -> 2.90.1-3)
    Now when I start it, it will bring up Rhythmbox and starts to scan my music library to update it's database.  Eventually it will segfault on it's own of if I try to do anything while it's updating the database.
    Here's is some of the pertinent debug information:
    (rhythmbox:20712): Json-CRITICAL **: json_object_get_array_member: assertion `JSON_NODE_HOLDS_ARRAY (node) || JSON_NODE_HOLDS_NULL (node)' failed
    (rhythmbox:20712): Json-CRITICAL **: json_array_get_length: assertion `array != NULL' failed
    ** Message: pygobject_register_sinkfunc is deprecated (GstObject)
    (rhythmbox:20712): libdmapsharing-WARNING **: DACP browsing not started
    (rhythmbox:20712): libdmapsharing-WARNING **: DACP browsing not started
    (12:13:19) [0x1da1040] [rhythmdb_process_one_event] rhythmdb.c:2529: processing RHYTHMDB_EVENT_THREAD_EXITED
    (12:13:19) [0x1da1040] [rhythmdb_process_one_event] rhythmdb.c:2507: processing RHYTHMDB_EVENT_METADATA_LOAD
    (12:13:19) [0x1da1040] [rhythmdb_process_one_event] rhythmdb.c:2507: processing RHYTHMDB_EVENT_METADATA_LOAD
    (12:13:19) [0x1da1040] [rhythmdb_process_one_event] rhythmdb.c:2507: processing RHYTHMDB_EVENT_METADATA_LOAD
    (12:13:19) [0x1da1040] [rhythmdb_process_one_event] rhythmdb.c:2507: processing RHYTHMDB_EVENT_METADATA_LOAD
    (12:13:19) [0x1da1040] [rb_statusbar_sync_status] rb-statusbar.c:467: updating status with: '16701 songs, 53 days, 22 hours and 31 minutes, 117.5 GB', '', 999.000000
    (12:13:19) [0x15e7080] [connection_closed_cb] rb-metadata-dbus-service.c:215: client connection closed
    Segmentation fault
    And here's are all the current packages that it requires
    $ for i in `pacman -Qi rhythmbox | grep Depends | cut -d ":" -f2`;  do pacman -Q $i ; done
    libgpod 0.8.0-2
    gvfs-afc 1.8.1-1
    libgnome-media-profiles 3.0.0-2
    totem-plparser 2.32.4-1
    libsoup-gnome 2.34.1-1
    gtk3 3.0.9-1
    libmusicbrainz3 3.0.3-1
    libmtp 1.0.2-2
    libnotify 0.7.2-1
    lirc-utils 1:0.9.0-2
    libwebkit3 1.3.13-1
    libdmapsharing 2.9.7-1
    media-player-info 13-1
    pygobject 2.28.4-1
    gstreamer0.10-python 0.10.21-1
    python-gnomekeyring 2.32.0-4
    gstreamer0.10-base-plugins 0.10.32-4
    gstreamer0.10-good-plugins 0.10.28-1
    json-glib 0.12.4-1
    desktop-file-utils 0.18-1
    libpeas 1.0.0-1
    python-mako 0.4.1-1
    Any ideas would be great, though this seems to be a bug of some kind as it was introduced after the upgrade.

    run it in gdb and get a trace then report it on http://bugzilla.gnome.org and paste the link here
    Last edited by wonder (2011-04-26 20:53:43)

  • XBMC suddenly started to segfault

    Hi
    While looking at a movie yesterday, a quite bad one actually, on my Arch box using XBMC 11 in the repos it suddenly crashed in the middle. And when I tried to restart it it starts to load and I get to the splash screen (sometimes even the menu) then it segfaults and crashes again.
    I tried to delete the userdata directory and then it loads fine, but when I add my movies directory and tries to browse it in XBMC it starts to segfault again, I also tried running XBMC as root and got the same issue. I also updated XBMC using pacman since there where a new version and reboot my machine but the errors still occur.
    Lastly I tried to use the xbmc-git package from AUR and it has the same error. The XBMC log doesn't report any errors that should cause this. I'll post the complete crash log as soon as I get back from work.
    I'm running XBMC on a 2nd gen Core i3 with the built in Intel graphics, all my Harddrives containing media are ext4 and mounted locally on the machine.
    Anyone have experienced anything similar?
    Thanks
    Last edited by Lazze (2012-06-05 07:36:07)

    I'm back home now so here's my crash log:
    ############## XBMC CRASH LOG ###############
    ################ SYSTEM INFO ################
    Date: Tue Jun 5 17:54:57 CEST 2012
    XBMC Options:
    Arch: x86_64
    Kernel: Linux 3.3.7-1-ARCH #1 SMP PREEMPT Tue May 22 00:26:26 CEST 2012
    Release:
    ############## END SYSTEM INFO ##############
    ############### STACK TRACE #################
    =====> Core file: /mnt/merlin/Osorterat/Charlie.St.Cloud.2010.BRRiP.720p.x264~PlutO~/core (2012-06-05 17:54:57.772950886 +0200)
    =========================================
    [New LWP 8207]
    [New LWP 8189]
    [New LWP 8199]
    [New LWP 8202]
    [New LWP 8206]
    [New LWP 8173]
    [New LWP 8203]
    [New LWP 8204]
    [New LWP 8205]
    [New LWP 8201]
    [New LWP 8198]
    [New LWP 8195]
    [New LWP 8196]
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/lib/libthread_db.so.1".
    Core was generated by `/usr/lib/xbmc/xbmc.bin'.
    Program terminated with signal 11, Segmentation fault.
    #0 0x00007f4e36983d4b in ?? () from /usr/lib/xbmc/system/players/dvdplayer/swscale-0-x86_64-linux.so
    Thread 13 (Thread 0x7f4e67fff700 (LWP 8196)):
    #0 0x00007f4e81c2efd5 in __getdents64 () from /lib/libc.so.6
    #1 0x00007f4e81c2ebf8 in readdir64 () from /lib/libc.so.6
    #2 0x00007f4e81c2f190 in scandirat64 () from /lib/libc.so.6
    #3 0x00000000006558b0 in FindFirstFile(char const*, _WIN32_FIND_DATA*) ()
    #4 0x0000000000ac705a in XFILE::CHDDirectory::GetDirectory(CStdStr<char> const&, CFileItemList&) ()
    #5 0x0000000000a9e1c9 in XFILE::CDirectory::GetDirectory(CStdStr<char> const&, CFileItemList&, CStdStr<char>, bool, bool, XFILE::DIR_CACHE_TYPE, bool, bool, bool) ()
    #6 0x0000000000dad19b in CUtil::GetRecursiveListing(CStdStr<char> const&, CFileItemList&, CStdStr<char> const&, bool) ()
    #7 0x00000000007f3e4f in VIDEO::CVideoInfoScanner::EnumerateSeriesFolder(CFileItem*, std::vector<VIDEO::SEpisode, std::allocator<VIDEO::SEpisode> >&) ()
    #8 0x00000000007f70ac in VIDEO::CVideoInfoScanner::RetrieveInfoForEpisodes(boost::shared_ptr<CFileItem>, long, boost::shared_ptr<ADDON::CScraper> const&, bool, CGUIDialogProgress*) ()
    #9 0x00000000007f72f6 in VIDEO::CVideoInfoScanner::RetrieveInfoForTvShow(boost::shared_ptr<CFileItem>, bool, boost::shared_ptr<ADDON::CScraper>&, bool, CScraperUrl*, bool, CGUIDialogProgress*) ()
    #10 0x00000000007f8202 in VIDEO::CVideoInfoScanner::RetrieveVideoInfo(CFileItemList&, bool, CONTENT_TYPE, bool, CScraperUrl*, bool, CGUIDialogProgress*) ()
    #11 0x00000000007f8b18 in VIDEO::CVideoInfoScanner::DoScan(CStdStr<char> const&) ()
    #12 0x00000000007f9148 in VIDEO::CVideoInfoScanner::Process() ()
    #13 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #14 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #15 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 12 (Thread 0x7f4e74b3b700 (LWP 8195)):
    #0 0x00007f4e8577f9fd in sem_post () from /lib/libpthread.so.0
    #1 0x00007f4e8253d769 in PyThread_release_lock () from /usr/lib/libpython2.7.so.1.0
    #2 0x00007f4e8250e149 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #3 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #4 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #5 0x00007f4e8252352d in PyImport_ExecCodeModuleEx () from /usr/lib/libpython2.7.so.1.0
    #6 0x00007f4e825237d3 in load_source_module () from /usr/lib/libpython2.7.so.1.0
    #7 0x00007f4e82524836 in import_submodule () from /usr/lib/libpython2.7.so.1.0
    #8 0x00007f4e82524ab0 in load_next () from /usr/lib/libpython2.7.so.1.0
    #9 0x00007f4e8252501f in import_module_level.isra.9 () from /usr/lib/libpython2.7.so.1.0
    #10 0x00007f4e825255ca in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #11 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #12 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #13 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #14 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #15 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #16 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #17 0x00007f4e8252352d in PyImport_ExecCodeModuleEx () from /usr/lib/libpython2.7.so.1.0
    #18 0x00007f4e825237d3 in load_source_module () from /usr/lib/libpython2.7.so.1.0
    #19 0x00007f4e82524836 in import_submodule () from /usr/lib/libpython2.7.so.1.0
    #20 0x00007f4e82524ab0 in load_next () from /usr/lib/libpython2.7.so.1.0
    #21 0x00007f4e8252501f in import_module_level.isra.9 () from /usr/lib/libpython2.7.so.1.0
    #22 0x00007f4e825255ca in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #23 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #24 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #25 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #26 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #27 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #28 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #29 0x00007f4e8252352d in PyImport_ExecCodeModuleEx () from /usr/lib/libpython2.7.so.1.0
    #30 0x00007f4e825237d3 in load_source_module () from /usr/lib/libpython2.7.so.1.0
    #31 0x00007f4e82524836 in import_submodule () from /usr/lib/libpython2.7.so.1.0
    #32 0x00007f4e82524ab0 in load_next () from /usr/lib/libpython2.7.so.1.0
    #33 0x00007f4e8252501f in import_module_level.isra.9 () from /usr/lib/libpython2.7.so.1.0
    #34 0x00007f4e825255ca in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #35 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #36 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #37 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #38 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #39 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #40 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #41 0x00007f4e8252352d in PyImport_ExecCodeModuleEx () from /usr/lib/libpython2.7.so.1.0
    #42 0x00007f4e825237d3 in load_source_module () from /usr/lib/libpython2.7.so.1.0
    #43 0x00007f4e82524836 in import_submodule () from /usr/lib/libpython2.7.so.1.0
    #44 0x00007f4e82524ab0 in load_next () from /usr/lib/libpython2.7.so.1.0
    #45 0x00007f4e8252501f in import_module_level.isra.9 () from /usr/lib/libpython2.7.so.1.0
    #46 0x00007f4e825255ca in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #47 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #48 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #49 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #50 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #51 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #52 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #53 0x00007f4e8252352d in PyImport_ExecCodeModuleEx () from /usr/lib/libpython2.7.so.1.0
    #54 0x00007f4e825237d3 in load_source_module () from /usr/lib/libpython2.7.so.1.0
    #55 0x00007f4e82524836 in import_submodule () from /usr/lib/libpython2.7.so.1.0
    #56 0x00007f4e82524ab0 in load_next () from /usr/lib/libpython2.7.so.1.0
    #57 0x00007f4e8252501f in import_module_level.isra.9 () from /usr/lib/libpython2.7.so.1.0
    #58 0x00007f4e825255ca in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #59 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #60 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #61 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #62 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #63 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #64 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #65 0x00007f4e8252352d in PyImport_ExecCodeModuleEx () from /usr/lib/libpython2.7.so.1.0
    #66 0x00007f4e825237d3 in load_source_module () from /usr/lib/libpython2.7.so.1.0
    #67 0x00007f4e82524836 in import_submodule () from /usr/lib/libpython2.7.so.1.0
    #68 0x00007f4e82524b2a in load_next () from /usr/lib/libpython2.7.so.1.0
    #69 0x00007f4e8252501f in import_module_level.isra.9 () from /usr/lib/libpython2.7.so.1.0
    #70 0x00007f4e825255ca in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #71 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #72 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #73 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #74 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #75 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #76 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #77 0x00007f4e8252352d in PyImport_ExecCodeModuleEx () from /usr/lib/libpython2.7.so.1.0
    #78 0x00007f4e825237d3 in load_source_module () from /usr/lib/libpython2.7.so.1.0
    #79 0x00007f4e82524836 in import_submodule () from /usr/lib/libpython2.7.so.1.0
    #80 0x00007f4e82524ab0 in load_next () from /usr/lib/libpython2.7.so.1.0
    #81 0x00007f4e8252505c in import_module_level.isra.9 () from /usr/lib/libpython2.7.so.1.0
    #82 0x00007f4e825255ca in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #83 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #84 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #85 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #86 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #87 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #88 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #89 0x00007f4e8252ceba in run_mod () from /usr/lib/libpython2.7.so.1.0
    #90 0x00007f4e8252dcb2 in PyRun_FileExFlags () from /usr/lib/libpython2.7.so.1.0
    #91 0x0000000000bd1152 in XBPyThread::Process() ()
    #92 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #93 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #94 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 11 (Thread 0x7f4e5ffff700 (LWP 8198)):
    #0 0x00007f4e8248ca50 in instance_getattr2 () from /usr/lib/libpython2.7.so.1.0
    #1 0x00007f4e8248cdc9 in instance_getattr () from /usr/lib/libpython2.7.so.1.0
    #2 0x00007f4e82510ad4 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #3 0x00007f4e82512a53 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #4 0x00007f4e82512a53 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #5 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #6 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #7 0x00007f4e8252ceba in run_mod () from /usr/lib/libpython2.7.so.1.0
    #8 0x00007f4e8252dcb2 in PyRun_FileExFlags () from /usr/lib/libpython2.7.so.1.0
    #9 0x0000000000bd1152 in XBPyThread::Process() ()
    #10 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #11 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #12 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 10 (Thread 0x7f4e667fc700 (LWP 8201)):
    #0 0x00007f4e81ca9d70 in __memcpy_ssse3_back () from /lib/libc.so.6
    #1 0x00007f4e846cbb1c in ?? () from /usr/lib/libsqlite3.so.0
    #2 0x00007f4e846cbc21 in ?? () from /usr/lib/libsqlite3.so.0
    #3 0x00007f4e8472b7c5 in ?? () from /usr/lib/libsqlite3.so.0
    #4 0x00007f4e8470dbb1 in sqlite3_step () from /usr/lib/libsqlite3.so.0
    #5 0x0000000000a4ac4a in dbiplus::SqliteDataset::query(char const*) ()
    #6 0x0000000000a394c5 in CDatabase::GetSingleValue(CStdStr<char> const&, CStdStr<char> const&, CStdStr<char> const&, CStdStr<char> const&) ()
    #7 0x00000000006ed478 in CRecentlyAddedJob::UpdateTotal() ()
    #8 0x00000000006f7243 in CRecentlyAddedJob::DoWork() ()
    #9 0x00000000006d8559 in CJobWorker::Process() ()
    #10 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #11 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #12 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 9 (Thread 0x7f4e5f7fe700 (LWP 8205)):
    #0 0x00007f4e8577f860 in sem_wait () from /lib/libpthread.so.0
    #1 0x00007f4e8253d6c5 in PyThread_acquire_lock () from /usr/lib/libpython2.7.so.1.0
    #2 0x00007f4e82522945 in _PyImport_AcquireLock () from /usr/lib/libpython2.7.so.1.0
    #3 0x00007f4e825255b9 in PyImport_ImportModuleLevel () from /usr/lib/libpython2.7.so.1.0
    #4 0x00007f4e8250b97f in builtin___import__ () from /usr/lib/libpython2.7.so.1.0
    #5 0x00007f4e8248088e in PyObject_Call () from /usr/lib/libpython2.7.so.1.0
    #6 0x00007f4e8250d547 in PyEval_CallObjectWithKeywords () from /usr/lib/libpython2.7.so.1.0
    #7 0x00007f4e8250ffb2 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0
    #8 0x00007f4e82513eb5 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0
    #9 0x00007f4e82513f82 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0
    #10 0x00007f4e8252ceba in run_mod () from /usr/lib/libpython2.7.so.1.0
    #11 0x00007f4e8252da88 in PyRun_StringFlags () from /usr/lib/libpython2.7.so.1.0
    #12 0x00007f4e8252e59b in PyRun_SimpleStringFlags () from /usr/lib/libpython2.7.so.1.0
    #13 0x0000000000bccdce in XBPython::InitializeInterpreter(boost::shared_ptr<ADDON::IAddon>) ()
    #14 0x0000000000bcff20 in XBPyThread::Process() ()
    #15 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #16 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #17 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 8 (Thread 0x7f4e64c74700 (LWP 8204)):
    #0 0x00007f4e81c5ae43 in select () from /lib/libc.so.6
    #1 0x0000000000672824 in JSONRPC::CTCPServer::Process() ()
    #2 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #3 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #4 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 7 (Thread 0x7f4e65475700 (LWP 8203)):
    #0 0x00007f4e81c5ae43 in select () from /lib/libc.so.6
    #1 0x0000000000671132 in SOCKETS::CSocketListener::Listen(int) ()
    #2 0x0000000000668fb3 in EVENTSERVER::CEventServer::Run() ()
    #3 0x00000000006691c8 in EVENTSERVER::CEventServer::Process() ()
    #4 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #5 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #6 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 6 (Thread 0x7f4e889567c0 (LWP 8173)):
    #0 0x00007f4e81bf612b in _int_free () from /lib/libc.so.6
    #1 0x00007f4e846bde10 in sqlite3_free () from /usr/lib/libsqlite3.so.0
    #2 0x00007f4e846be293 in ?? () from /usr/lib/libsqlite3.so.0
    #3 0x00007f4e846c79e3 in ?? () from /usr/lib/libsqlite3.so.0
    #4 0x00007f4e846c7a43 in ?? () from /usr/lib/libsqlite3.so.0
    #5 0x00007f4e846fd865 in sqlite3_close () from /usr/lib/libsqlite3.so.0
    #6 0x0000000000a47439 in dbiplus::SqliteDatabase::disconnect() ()
    #7 0x0000000000a3820f in CDatabase::Close() ()
    #8 0x0000000000d6b501 in CGUIInfoManager::GetLibraryBool(int) ()
    #9 0x0000000000d771da in CGUIInfoManager::GetBool(int, int, CGUIListItem const*) ()
    #10 0x0000000000b79dc9 in INFO::InfoSingle::Update(CGUIListItem const*) ()
    #11 0x0000000000d7b517 in INFO::InfoBool::Get(unsigned int, CGUIListItem const*) ()
    #12 0x0000000000b7a1d6 in INFO::InfoExpression::Evaluate(CGUIListItem const*, bool&) ()
    #13 0x0000000000d7b517 in INFO::InfoBool::Get(unsigned int, CGUIListItem const*) ()
    #14 0x0000000000820246 in CGUIControl::UpdateVisibility(CGUIListItem const*) ()
    #15 0x000000000082ed1f in CGUIControlGroupList::Process(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #16 0x0000000000821e2e in CGUIControl::DoProcess(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #17 0x000000000082c3db in CGUIControlGroup::Process(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #18 0x0000000000821e2e in CGUIControl::DoProcess(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #19 0x000000000082c3db in CGUIControlGroup::Process(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #20 0x0000000000821e2e in CGUIControl::DoProcess(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #21 0x000000000082c3db in CGUIControlGroup::Process(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #22 0x0000000000821e2e in CGUIControl::DoProcess(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #23 0x000000000088bf47 in CGUIWindow::DoProcess(unsigned int, std::vector<CDirtyRegion, std::allocator<CDirtyRegion> >&) ()
    #24 0x000000000088f605 in CGUIWindowManager::Process(unsigned int) ()
    #25 0x0000000000d3f0a7 in CApplication::FrameMove(bool) ()
    #26 0x0000000000db910e in CXBApplicationEx::Run() ()
    #27 0x0000000000643223 in main ()
    Thread 5 (Thread 0x7f4e5effd700 (LWP 8206)):
    #0 0x00007f4e81c5906f in poll () from /lib/libc.so.6
    #1 0x00007f4e8758e1ca in ?? () from /usr/lib/libavahi-common.so.3
    #2 0x00007f4e8758dccb in avahi_simple_poll_run () from /usr/lib/libavahi-common.so.3
    #3 0x00007f4e8758dea8 in avahi_simple_poll_iterate () from /usr/lib/libavahi-common.so.3
    #4 0x00007f4e8758e0dd in avahi_simple_poll_loop () from /usr/lib/libavahi-common.so.3
    #5 0x00007f4e8758e15c in ?? () from /usr/lib/libavahi-common.so.3
    #6 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #7 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 4 (Thread 0x7f4e65c76700 (LWP 8202)):
    #0 0x00007f4e857809bd in nanosleep () from /lib/libpthread.so.0
    #1 0x000000000065abe8 in Sleep(unsigned int) ()
    #2 0x0000000000736a93 in CWeatherJob::DoWork() ()
    #3 0x00000000006d8559 in CJobWorker::Process() ()
    #4 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #5 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #6 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 3 (Thread 0x7f4e66ffd700 (LWP 8199)):
    #0 0x00007f4e8577dc61 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib/libpthread.so.0
    #1 0x00000000006d82a7 in CJobManager::GetNextJob(CJobWorker const*) ()
    #2 0x00000000006d857a in CJobWorker::Process() ()
    #3 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #4 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #5 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 2 (Thread 0x7f4e75d67700 (LWP 8189)):
    #0 0x00007f4e81c5906f in poll () from /lib/libc.so.6
    #1 0x0000000000c9f222 in PERIPHERALS::CPeripheralBusUSB::WaitForUpdate() ()
    #2 0x0000000000c9f2b0 in PERIPHERALS::CPeripheralBusUSB::Process() ()
    #3 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #4 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #5 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    Thread 1 (Thread 0x7f4e5e7fc700 (LWP 8207)):
    #0 0x00007f4e36983d4b in ?? () from /usr/lib/xbmc/system/players/dvdplayer/swscale-0-x86_64-linux.so
    #1 0x00007f4e3698c338 in sws_scale () from /usr/lib/xbmc/system/players/dvdplayer/swscale-0-x86_64-linux.so
    #2 0x00000000008b39b3 in CDVDFileInfo::ExtractThumb(CStdStr<char> const&, CStdStr<char> const&, CStreamDetails*) ()
    #3 0x0000000000da5002 in CThumbExtractor::DoWork() ()
    #4 0x00000000006d8559 in CJobWorker::Process() ()
    #5 0x0000000000cfd022 in CThread::staticThread(void*) ()
    #6 0x00007f4e85779e0e in start_thread () from /lib/libpthread.so.0
    #7 0x00007f4e81c611ed in clone () from /lib/libc.so.6
    ############# END STACK TRACE ###############
    ################# LOG FILE ##################
    17:54:56 T:139975275669440 NOTICE: -----------------------------------------------------------------------
    17:54:56 T:139975275669440 NOTICE: Starting XBMC (11.0-PRE Git:20120317-c317d94), Platform: Linux (Arch Linux, 3.3.7-1-ARCH x86_64). Built on Jun 4 2012
    17:54:56 T:139975275669440 NOTICE: special://xbmc/ is mapped to: /usr/share/xbmc
    17:54:56 T:139975275669440 NOTICE: special://xbmcbin/ is mapped to: /usr/lib/xbmc
    17:54:56 T:139975275669440 NOTICE: special://masterprofile/ is mapped to: /home/lasse/.xbmc/userdata
    17:54:56 T:139975275669440 NOTICE: special://home/ is mapped to: /home/lasse/.xbmc
    17:54:56 T:139975275669440 NOTICE: special://temp/ is mapped to: /home/lasse/.xbmc/temp
    17:54:56 T:139975275669440 NOTICE: The executable running is: /usr/lib/xbmc/xbmc.bin
    17:54:56 T:139975275669440 NOTICE: Local hostname: Albounty
    17:54:56 T:139975275669440 NOTICE: Log File is located: /home/lasse/.xbmc/temp/xbmc.log
    17:54:56 T:139975275669440 NOTICE: -----------------------------------------------------------------------
    17:54:56 T:139975275669440 NOTICE: Setup SDL
    17:54:56 T:139975275669440 INFO: Available videomodes (xrandr):
    17:54:56 T:139975275669440 INFO: Number of connected outputs: 1
    17:54:56 T:139975275669440 INFO: Output 'HDMI2' has 31 modes
    17:54:56 T:139975275669440 INFO: ID:0x46 Name:1920x1080 Refresh:60.000000 Width:1920 Height:1080
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.000000
    17:54:56 T:139975275669440 INFO: ID:0x47 Name:1920x1080 Refresh:50.000000 Width:1920 Height:1080
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.000000
    17:54:56 T:139975275669440 INFO: ID:0x48 Name:1920x1080 Refresh:30.000000 Width:1920 Height:1080
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.000000
    17:54:56 T:139975275669440 INFO: ID:0x49 Name:1920x1080 Refresh:25.000000 Width:1920 Height:1080
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.000000
    17:54:56 T:139975275669440 INFO: ID:0x4a Name:1920x1080 Refresh:24.000000 Width:1920 Height:1080
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.000000
    17:54:56 T:139975275669440 INFO: ID:0x4b Name:1600x1200 Refresh:60.000000 Width:1600 Height:1200
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x4c Name:1680x1050 Refresh:59.954250 Width:1680 Height:1050
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.111111
    17:54:56 T:139975275669440 INFO: ID:0x4d Name:1280x1024 Refresh:75.024673 Width:1280 Height:1024
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.422222
    17:54:56 T:139975275669440 INFO: ID:0x4e Name:1280x1024 Refresh:60.019741 Width:1280 Height:1024
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.422222
    17:54:56 T:139975275669440 INFO: ID:0x4f Name:1440x900 Refresh:74.984428 Width:1440 Height:900
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.111111
    17:54:56 T:139975275669440 INFO: ID:0x50 Name:1440x900 Refresh:59.887440 Width:1440 Height:900
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.111111
    17:54:56 T:139975275669440 INFO: ID:0x51 Name:1280x960 Refresh:60.000000 Width:1280 Height:960
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x52 Name:1360x768 Refresh:60.015160 Width:1360 Height:768
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.003922
    17:54:56 T:139975275669440 INFO: ID:0x53 Name:1280x800 Refresh:59.810329 Width:1280 Height:800
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.111111
    17:54:56 T:139975275669440 INFO: ID:0x54 Name:1152x864 Refresh:75.000000 Width:1152 Height:864
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x55 Name:1280x720 Refresh:50.000000 Width:1280 Height:720
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.000000
    17:54:56 T:139975275669440 INFO: ID:0x56 Name:1280x720 Refresh:60.000000 Width:1280 Height:720
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.000000
    17:54:56 T:139975275669440 INFO: ID:0x57 Name:1024x768 Refresh:75.076218 Width:1024 Height:768
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x58 Name:1024x768 Refresh:70.069359 Width:1024 Height:768
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x59 Name:1024x768 Refresh:60.003841 Width:1024 Height:768
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x5a Name:832x624 Refresh:74.551270 Width:832 Height:624
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x5b Name:800x600 Refresh:72.187569 Width:800 Height:600
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x5c Name:800x600 Refresh:75.000000 Width:800 Height:600
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x5d Name:800x600 Refresh:60.316540 Width:800 Height:600
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x5e Name:720x576 Refresh:50.000000 Width:720 Height:576
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.422222
    17:54:56 T:139975275669440 INFO: ID:0x5f Name:720x480 Refresh:59.940060 Width:720 Height:480
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.185185
    17:54:56 T:139975275669440 INFO: ID:0x60 Name:640x480 Refresh:72.808800 Width:640 Height:480
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x61 Name:640x480 Refresh:75.000000 Width:640 Height:480
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x62 Name:640x480 Refresh:66.666656 Width:640 Height:480
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x63 Name:640x480 Refresh:60.000000 Width:640 Height:480
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 1.333333
    17:54:56 T:139975275669440 INFO: ID:0x64 Name:720x400 Refresh:70.081673 Width:720 Height:400
    17:54:56 T:139975275669440 INFO: Pixel Ratio: 0.987654
    17:54:56 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.ConsoleKit on /org/freedesktop/ConsoleKit/Manager with interface org.freedesktop.ConsoleKit.Manager and method CanStop
    17:54:56 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UPower on /org/freedesktop/UPower with interface org.freedesktop.UPower and method EnumerateDevices
    17:54:56 T:139975275669440 INFO: Selected UPower and ConsoleKit as PowerSyscall
    17:54:56 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.ConsoleKit on /org/freedesktop/ConsoleKit/Manager with interface org.freedesktop.ConsoleKit.Manager and method CanStop
    17:54:56 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.ConsoleKit on /org/freedesktop/ConsoleKit/Manager with interface org.freedesktop.ConsoleKit.Manager and method CanRestart
    17:54:56 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UPower on /org/freedesktop/UPower with interface org.freedesktop.DBus.Properties and method Get
    17:54:56 T:139975275669440 DEBUG: Previous line repeats 1 times.
    17:54:56 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UPower on /org/freedesktop/UPower with interface org.freedesktop.UPower and method EnumerateDevices
    17:54:56 T:139975275669440 NOTICE: load settings...
    17:54:56 T:139975275669440 NOTICE: special://profile/ is mapped to: special://masterprofile/
    17:54:56 T:139975275669440 NOTICE: loading special://masterprofile/guisettings.xml
    17:54:56 T:139975275669440 NOTICE: Getting hardware information now...
    17:54:56 T:139975275669440 INFO: Using analog output
    17:54:56 T:139975275669440 INFO: AC3 pass through is enabled
    17:54:56 T:139975275669440 INFO: DTS pass through is enabled
    17:54:56 T:139975275669440 INFO: AAC pass through is disabled
    17:54:56 T:139975275669440 INFO: MP1 pass through is disabled
    17:54:56 T:139975275669440 INFO: MP2 pass through is disabled
    17:54:56 T:139975275669440 INFO: MP3 pass through is disabled
    17:54:56 T:139975275669440 NOTICE: Checking resolution 12
    17:54:56 T:139975275669440 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
    17:54:56 T:139975275669440 DEBUG: CPlayerCoreConfig::<ctor>: created player DVDPlayer for core 1
    17:54:56 T:139975275669440 DEBUG: CPlayerCoreConfig::<ctor>: created player oldmplayercore for core 1
    17:54:56 T:139975275669440 DEBUG: CPlayerCoreConfig::<ctor>: created player PAPlayer for core 3
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtv
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: hdhomerun/myth/rtmp/mms/udp
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: flv/aacp/sdp
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdfile
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf
    17:54:56 T:139975275669440 DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv
    17:54:56 T:139975275669440 NOTICE: Loaded playercorefactory configuration
    17:54:56 T:139975275669440 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
    17:54:56 T:139975275669440 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
    17:54:56 T:139975275669440 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
    17:54:56 T:139975275669440 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
    17:54:56 T:139975275669440 NOTICE: Default DVD Player: dvdplayer
    17:54:56 T:139975275669440 NOTICE: Default Video Player: dvdplayer
    17:54:56 T:139975275669440 NOTICE: Default Audio Player: paplayer
    17:54:56 T:139975275669440 NOTICE: Disabled debug logging due to GUI setting. Level 1.
    17:54:56 T:139975275669440 NOTICE: Log level changed to 1
    17:54:56 T:139975275669440 NOTICE: Loading media sources from special://masterprofile/sources.xml
    17:54:56 T:139975275669440 INFO: creating subdirectories
    17:54:56 T:139975275669440 INFO: userdata folder: special://masterprofile/
    17:54:56 T:139975275669440 INFO: recording folder:
    17:54:56 T:139975275669440 INFO: screenshots folder:
    17:54:56 T:139975275669440 INFO: thumbnails folder: special://masterprofile/Thumbnails
    17:54:56 T:139975275669440 INFO: load language info file: special://xbmc/language/English/langinfo.xml
    17:54:56 T:139975275669440 DEBUG: trying to set locale to en_GB.UTF-8
    17:54:56 T:139975275669440 INFO: global locale set to C
    17:54:56 T:139975275669440 INFO: load language file:special://xbmc/language/English/strings.xml
    17:54:56 T:139975275669440 DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcpluff-x86_64-linux.so)
    17:54:56 T:139975275669440 DEBUG: Loading: /usr/lib/xbmc/system/libcpluff-x86_64-linux.so
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Suspicious plug-in descriptor content in /home/lasse/.xbmc/addons/skin.rapier/addon.xml, line 18, column 5 (ignoring unexpected element res and its contents).'
    17:54:56 T:139975275669440 INFO: ADDON: cpluff: 'Could not read plug-in directory /usr/lib/xbmc/addons: No such file or directory'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.albums.allmusic.com has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.euphoria has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in visualization.projectm has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in weather.wunderground has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.favourites has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.allmusic.com has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in repo.pecinko has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.watchlist has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in skin.confluence has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in visualization.glspectrum has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.module.beautifulsoup has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in visualization.milkdrop has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in skin.rapier has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.common.plugin.cache has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in visualization.dxspectrum has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.logo-downloader has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.module.simple.downloader has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.youtube has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.recentlyadded has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.solarwinds has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.artwork.downloader has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.slideshow has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.yahoomusic.com has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.last.fm has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.module.parsedom has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.module.elementtree has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.plasma has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in visualization.waveform has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in script.module.pysqlite has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in visualization.itunes has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.hdtrailers.net has been installed.'
    17:54:56 T:139975275669440 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.'
    17:54:56 T:139975275669440 DEBUG: LoadMappings - loaded node "Motorola Nyxboard Hybrid"
    17:54:56 T:139975275669440 DEBUG: LoadMappings - loaded node "Pulse-Eight CEC Adaptor"
    17:54:56 T:139975275669440 DEBUG: CPeripheralBusUSB - initialised udev monitor: 15
    17:54:56 T:139975275669440 INFO: LIRC Initialize: using: /dev/lircd
    17:54:56 T:139975275669440 INFO: LIRC Initialize: connect failed: No such file or directory
    17:54:56 T:139974961166080 DEBUG: Thread XBMC Peripherals start, auto delete: 0
    17:54:56 T:139975275669440 DEBUG: Failed to connect to LIRC. Retry in 10s.
    17:54:56 T:139975275669440 DEBUG: OnLostDevice - notify display change event
    17:54:56 T:139975275669440 INFO: XRANDR: /usr/lib/xbmc/xbmc-xrandr --output HDMI2 --mode 0x46
    17:54:57 T:139975275669440 NOTICE: Using visual 0x22
    17:54:57 T:139975275669440 INFO: GL: Maximum texture width: 8192
    17:54:57 T:139975275669440 DEBUG: SECTION:LoadDLL(special://xbmcbin/system/ImageLib-x86_64-linux.so)
    17:54:57 T:139975275669440 DEBUG: Loading: /usr/lib/xbmc/system/ImageLib-x86_64-linux.so
    17:54:57 T:139975275669440 DEBUG: GLX_EXTENSIONS: GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_import_context GLX_EXT_visual_info GLX_EXT_visual_rating GLX_MESA_copy_sub_buffer GLX_MESA_multithread_makecurrent GLX_MESA_swap_control GLX_OML_swap_method GLX_OML_sync_control GLX_SGI_make_current_read GLX_SGI_swap_control GLX_SGI_video_sync GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGIX_visual_select_group GLX_EXT_texture_from_pixmap
    17:54:57 T:139975275669440 NOTICE: GL_VENDOR = Tungsten Graphics, Inc
    17:54:57 T:139975275669440 NOTICE: GL_RENDERER = Mesa DRI Intel(R) Sandybridge Desktop
    17:54:57 T:139975275669440 NOTICE: GL_VERSION = 3.0 Mesa 8.0.3
    17:54:57 T:139975275669440 NOTICE: GL_SHADING_LANGUAGE_VERSION = 1.30
    17:54:57 T:139975275669440 NOTICE: GL_EXTENSIONS = GL_ARB_multisample GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_copy_texture GL_EXT_polygon_offset GL_EXT_subtexture GL_EXT_texture_object GL_EXT_vertex_array GL_EXT_compiled_vertex_array GL_EXT_texture GL_EXT_texture3D GL_IBM_rasterpos_clip GL_ARB_point_parameters GL_EXT_draw_range_elements GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_separate_specular_color GL_EXT_texture_edge_clamp GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_ARB_framebuffer_sRGB GL_ARB_multitexture GL_EXT_framebuffer_sRGB GL_IBM_multimode_draw_arrays GL_IBM_texture_mirrored_repeat GL_3DFX_texture_compression_FXT1 GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_transpose_matrix GL_EXT_blend_func_separate GL_EXT_fog_coord GL_EXT_multi_draw_arrays GL_EXT_secondary_color GL_EXT_texture_env_add GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_INGR_blend_func_separate GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texgen_reflection GL_NV_texture_env_combine4 GL_SUN_multi_draw_arrays GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_EXT_framebuffer_object GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_MESA_window_pos GL_NV_packed_depth_stencil GL_NV_texture_rectangle GL_NV_vertex_program GL_ARB_depth_texture GL_ARB_occlusion_query GL_ARB_shadow GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_window_pos GL_ATI_envmap_bumpmap GL_EXT_stencil_two_side GL_EXT_texture_cube_map GL_NV_depth_clamp GL_NV_vertex_program1_1 GL_APPLE_packed_pixels GL_APPLE_vertex_array_object GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_vertex_program GL_ARB_vertex_shader GL_ATI_draw_buffers GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_ARB_depth_clamp GL_ARB_fragment_program_shadow GL_ARB_half_float_pixel GL_ARB_point_sprite GL_ARB_shading_language_100 GL_ARB_sync GL_ARB_texture_non_power_of_two GL_ARB_vertex_buffer_object GL_ATI_blend_equation_separate GL_EXT_blend_equation_separate GL_OES_read_format GL_ARB_color_buffer_float GL_ARB_pixel_buffer_object GL_ARB_texture_compression_rgtc GL_ARB_texture_float GL_ARB_texture_rectangle GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_texture_compression_rgtc GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_shared_exponent GL_ARB_framebuffer_object GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_packed_depth_stencil GL_APPLE_object_purgeable GL_ARB_vertex_array_object GL_ATI_separate_stencil GL_EXT_draw_buffers2 GL_EXT_gpu_program_parameters GL_EXT_texture_array GL_EXT_texture_integer GL_EXT_texture_sRGB_decode GL_EXT_timer_query GL_OES_EGL_image GL_MESA_texture_array GL_ARB_copy_buffer GL_ARB_depth_buffer_float GL_ARB_half_float_vertex GL_ARB_map_buffer_range GL_ARB_texture_rg GL_ARB_texture_swizzle GL_ARB_vertex_array_bgra GL_EXT_separate_shader_objects GL_EXT_texture_swizzle GL_EXT_vertex_array_bgra GL_NV_conditional_render GL_ARB_ES2_compatibility GL_ARB_draw_elements_base_vertex GL_ARB_explicit_attrib_location GL_ARB_fragment_coord_conventions GL_ARB_provoking_vertex GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_shader_texture_lod GL_EXT_provoking_vertex GL_EXT_texture_snorm GL_MESA_texture_signed_rgba GL_ARB_robustness GL_EXT_transform_feedback
    17:54:57 T:139975275669440 DEBUG: OnLostDevice - notify display change event
    17:54:57 T:139975275669440 ERROR: GLX: Same window as before, refreshing context
    17:54:57 T:139975275669440 INFO: GL: Maximum texture width: 8192
    17:54:57 T:139975275669440 DEBUG: CRenderManager::UpdateDisplayLatency - Latency set to 0 msec
    17:54:57 T:139975275669440 INFO: load default splash image: /usr/share/xbmc/media/Splash.png
    17:54:57 T:139975275669440 INFO: load keymapping
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/appcommand.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/gamepad.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.Alienware.Dual.Compatible.Controller.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.AppleRemote.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.Harmony.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.Interact.AxisPad.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.Logitech.RumblePad.2.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.Microsoft.Xbox.360.Controller.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.Microsoft.Xbox.Controller.S.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.PS3.Remote.Keyboard.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.Sony.PLAYSTATION(R)3.Controller.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/joystick.WiiRemote.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/keyboard.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/mouse.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/keymaps/remote.xml
    17:54:57 T:139975275669440 INFO: Loading special://xbmc/system/Lircmap.xml
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'mceusb'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'XboxDVDDongle'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'Microsoft_Xbox'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'PinnacleSysPCTVRemote'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'anysee'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'iMON-PAD'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'Antec_Veris_RM200'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'MCE_via_iMON'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'TwinHanRemote'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'linux-input-layer'
    17:54:57 T:139975275669440 INFO: * Linking remote mapping for 'linux-input-layer' to 'cx23885_remote'
    17:54:57 T:139975275669440 INFO: * Linking remote mapping for 'linux-input-layer' to 'devinput'
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'mediacenter'
    17:54:57 T:139975275669440 INFO: Loading special://profile/Lircmap.xml
    17:54:57 T:139975275669440 INFO: * Adding remote mapping for device 'Apple_A1294_macmini'
    17:54:57 T:139975275669440 INFO: GUI format 1920x1080 1920x1080 @ 60.00 - Full Screen
    17:54:57 T:139975275669440 DEBUG: guilib: Fill viewport always for solving rendering passes
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks with interface org.freedesktop.UDisks and method EnumerateDevices
    17:54:57 T:139975275669440 DEBUG: Selected UDisks as storage provider
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DaemonVersion 1
    17:54:57 T:139975275669440 DEBUG: UDisks: Querying available devices
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks with interface org.freedesktop.UDisks and method EnumerateDevices
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sda1)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda1 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sda1: IsFileSystem true HasFileSystem ext2 IsSystemInternal true IsMounted true IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 NOTICE: UDisks: Added /boot
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sda2)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda2 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sda2: IsFileSystem false HasFileSystem IsSystemInternal true IsMounted false IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sda3)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda3 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sda3: IsFileSystem true HasFileSystem ext4 IsSystemInternal true IsMounted true IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sda4)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda4 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sda4: IsFileSystem true HasFileSystem ext4 IsSystemInternal true IsMounted true IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 NOTICE: UDisks: Added /home
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sda)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sda with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sda: IsFileSystem false HasFileSystem IsSystemInternal true IsMounted false IsRemovable false IsPartition false IsOptical false
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sdb1)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdb1 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdb with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sdb1: IsFileSystem true HasFileSystem ext4 IsSystemInternal true IsMounted true IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 NOTICE: UDisks: Added /mnt/jester
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sdd1)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdd1 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdd with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sdd1: IsFileSystem true HasFileSystem ext4 IsSystemInternal true IsMounted true IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 NOTICE: UDisks: Added /mnt/cougar
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sde1)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sde1 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sde with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sde1: IsFileSystem true HasFileSystem ext4 IsSystemInternal true IsMounted true IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 NOTICE: UDisks: Added /mnt/merlin
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sde)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sde with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sde: IsFileSystem false HasFileSystem IsSystemInternal true IsMounted false IsRemovable false IsPartition false IsOptical false
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sdc)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdc with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sdc: IsFileSystem false HasFileSystem IsSystemInternal true IsMounted false IsRemovable false IsPartition false IsOptical false
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sdd)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdd with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sdd: IsFileSystem false HasFileSystem IsSystemInternal true IsMounted false IsRemovable false IsPartition false IsOptical false
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sdb)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdb with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sdb: IsFileSystem false HasFileSystem IsSystemInternal true IsMounted false IsRemovable false IsPartition false IsOptical false
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded (/org/freedesktop/UDisks/devices/sdc1)
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdc1 with interface org.freedesktop.DBus.Properties and method GetAll
    17:54:57 T:139975275669440 DEBUG: DBus: Creating message to org.freedesktop.UDisks on /org/freedesktop/UDisks/devices/sdc with interface org.freedesktop.DBus.Properties and method Get
    17:54:57 T:139975275669440 DEBUG: UDisks: DeviceAdded - DeviceUDI /org/freedesktop/UDisks/devices/sdc1: IsFileSystem true HasFileSystem ext4 IsSystemInternal true IsMounted true IsRemovable false IsPartition true IsOptical false
    17:54:57 T:139975275669440 NOTICE: UDisks: Added /mnt/hollywood
    17:54:57 T:139975275669440 DEBUG: SECTION:LoadDLL(libcurl.so.4)
    17:54:57 T:139975275669440 DEBUG: Loading: libcurl.so.4
    17:54:57 T:139975275669440 NOTICE: start dvd mediatype detection
    17:54:57 T:139975275669440 NOTICE: initializing playlistplayer
    17:54:57 T:139975275669440 NOTICE: DONE initializing playlistplayer
    17:54:57 T:139975275935488 DEBUG: Thread CDetectDVDMedia start, auto delete: 0
    17:54:57 T:139975275935488 DEBUG: Compiled with libcdio Version 0.83
    17:54:57 T:139975275669440 DEBUG: DPMS: supported power-saving modes: SUSPEND OFF STANDBY
    17:54:57 T:139975275935488 DEBUG: Thread CDetectDVDMedia 139975275935488 terminating
    17:54:57 T:139975275669440 INFO: Unloading old skin ...
    17:54:57 T:139975275669440 INFO: load skin from:/usr/share/xbmc/addons/skin.confluence
    17:54:57 T:139975275669440 INFO: load fonts for skin...
    17:54:57 T:139975275669440 INFO: Loading fonts from /usr/share/xbmc/addons/skin.confluence/720p/Font.xml
    17:54:57 T:139975275669440 INFO: Loading skin includes from /usr/share/xbmc/addons/skin.confluence/720p/includes.xml
    17:54:57 T:139975275669440 INFO: load new skin...
    17:54:57 T:139975275669440 INFO: Loading skin file: Home.xml
    17:54:57 T:139975275669440 DEBUG: Load Home.xml: 20.54ms
    17:54:57 T:139975275669440 INFO: Loading user windows, path /usr/share/xbmc/addons/skin.confluence/720p
    17:54:57 T:139975275669440 DEBUG: Load Skin XML: 25.08ms
    17:54:57 T:139975275669440 INFO: initialize new skin...
    17:54:57 T:139975275669440 DEBUG: guilib: Fill viewport always for solving rendering passes
    17:54:57 T:139975275669440 INFO: Loading skin file: Pointer.xml
    17:54:57 T:139975275669440 DEBUG: Load Pointer.xml: 0.64ms
    17:54:57 T:139975275669440 INFO: Loading skin file: DialogVolumeBar.xml
    17:54:57 T:139975275669440 DEBUG: Load DialogVolumeBar.xml: 0.85ms
    17:54:57 T:139975275669440 INFO: Loading skin file: DialogKaiToast.xml
    17:54:57 T:139975275669440 DEBUG: Load DialogKaiToast.xml: 0.95ms
    17:54:57 T:139975275669440 INFO: Loading skin file: DialogMuteBug.xml
    17:54:57 T:139975275669440 DEBUG: Load DialogMuteBug.xml: 0.60ms
    17:54:57 T:139975275669440 INFO: Loading skin file: DialogSeekBar.xml
    17:54:57 T:139975275669440 DEBUG: Load DialogSeekBar.xml: 2.76ms
    17:54:57 T:139975275669440 INFO: Loading skin file: DialogBusy.xml
    17:54:57 T:139975275669440 DEBUG: Load DialogBusy.xml: 0.65ms
    17:54:57 T:139975275669440 INFO: skin loaded...
    17:54:57 T:139975275669440 INFO: JSONRPC: Sucessfully initialized
    17:54:57 T:139975275669440 DEBUG: ADDON: Starting service addons.
    17:54:57 T:139975275669440 INFO: initializing python engine.
    17:54:57 T:139975275669440 DEBUG: new python thread created. id=1
    17:54:57 T:139975275669440 INFO: initializing python engine.
    17:54:57 T:139975275669440 DEBUG: new python thread created. id=2
    17:54:57 T:139974950504192 DEBUG: Thread XBPyThread start, auto delete: 0
    17:54:57 T:139974950504192 DEBUG: Python thread: start processing
    17:54:57 T:139974942111488 DEBUG: Thread XBPyThread start, auto delete: 0
    17:54:57 T:139974942111488 DEBUG: Python thread: start processing
    17:54:57 T:139975275669440 DEBUG: Activating window ID: 12999
    17:54:57 T:139975275669440 DEBUG: ------ Window Init (Startup.xml) ------
    17:54:57 T:139975275669440 INFO: Loading skin file: Startup.xml
    17:54:57 T:139975275669440 DEBUG: Load Startup.xml: 1.08ms
    17:54:57 T:139975275669440 DEBUG: Alloc resources: 1.12ms (1.12 ms skin load)
    17:54:57 T:139975275669440 INFO: removing tempfiles
    17:54:57 T:139975275669440 NOTICE: UpdateLibraries - Starting video library startup scan
    17:54:57 T:139975275669440 NOTICE: UpdateLibraries - Starting music library startup scan
    17:54:57 T:139974729004800 DEBUG: Thread VIDEO::CVideoInfoScanner start, auto delete: 0
    17:54:57 T:139975275669440 DEBUG: ------ Window Init (DialogMusicScan.xml) ------
    17:54:57 T:139975275669440 INFO: Loading skin file: DialogMusicScan.xml
    17:54:57 T:139975275669440 DEBUG: Load DialogMusicScan.xml: 1.54ms
    17:54:57 T:139975275669440 DEBUG: OpenBundle - Opened bundle /usr/share/xbmc/addons/skin.confluence/media/Textures.xbt
    17:54:57 T:139975275669440 DEBUG: Alloc resources: 2.60ms (1.58 ms skin load)
    17:54:57 T:139974729004800 NOTICE: VideoInfoScanner: Starting scan ..
    17:54:57 T:139975275669440 INFO: Music scan has started... Enabling tag reading, and remote thumbs
    17:54:57 T:139974729004800 ERROR: GetDirectory - Error getting /mnt/cougar/Sorterat/Film HD/
    17:54:57 T:139974729004800 DEBUG: VideoInfoScanner: Skipping dir '/mnt/cougar/Sorterat/Film HD/' as it's empty or doesn't exist - adding to clean list
    17:54:57 T:139975275669440 DEBUG: ADDON: Starting service addons.
    17:54:57 T:139974720612096 DEBUG: Thread MUSIC_INFO::CMusicInfoScanner start, auto delete: 0
    17:54:57 T:139975275669440 INFO: initializing python engine.
    17:54:57 T:139975275669440 DEBUG: new python thread created. id=3
    17:54:57 T:139974594787072 DEBUG: Thread XBPyThread start, auto delete: 0
    17:54:57 T:139974594787072 DEBUG: Python thread: start processing
    17:54:57 T:139975275669440 NOTICE: initialize done
    17:54:57 T:139975275669440 NOTICE: Running the application...
    17:54:57 T:139975275669440 DEBUG: ExecuteXBMCAction : Translating ReplaceWindow(Home)
    17:54:57 T:139975275669440 DEBUG: ExecuteXBMCAction : To ReplaceWindow(Home)
    17:54:57 T:139975275669440 DEBUG: Activating window ID: 10000
    17:54:57 T:139974712219392 DEBUG: Thread Jobworker start, auto delete: 1
    17:54:57 T:139975275669440 DEBUG: ------ Window Init (Pointer.xml) ------
    17:54:57 T:139975275669440 DEBUG: Alloc resources: 0.15ms (0.00 ms skin load)
    17:54:57 T:139974720612096 DEBUG: Process - Starting scan
    17:54:57 T:139974703826688 DEBUG: Thread CThread start, auto delete: 0
    17:54:57 T:139974703826688 DEBUG: Thread CThread 139974703826688 terminating
    17:54:57 T:139974720612096 DEBUG: Process - Finished scan
    17:54:57 T:139975275669440 INFO: GL: Enabling VSYNC
    17:54:57 T:139974720612096 NOTICE: My Music: Scanning for music info using worker thread, operation took 00:00
    17:54:57 T:139974720612096 INFO: Music scan was stopped or finished ... restoring FindRemoteThumbs
    17:54:57 T:139975275669440 INFO: GL: Selected vsync mode 5
    17:54:57 T:139975275669440 DEBUG: ------ Window Deinit (Startup.xml) ------
    17:54:57 T:139975275669440 DEBUG: CheckDisplayEvents: Received RandR event 101
    17:54:57 T:139975275669440 DEBUG: CheckDisplayEvents - notify display reset event
    17:54:57 T:139975275669440 DEBUG: ------ Window Init (Home.xml) ------
    17:54:57 T:139974720612096 DEBUG: Thread MUSIC_INFO::CMusicInfoScanner 139974720612096 terminating
    17:54:57 T:139975275669440 DEBUG: Alloc resources: 1.23ms (0.00 ms skin load)
    17:54:57 T:139974703826688 DEBUG: Thread Jobworker start, auto delete: 1
    17:54:57 T:139974950504192 NOTICE: -->Python Interpreter Initialized<--
    17:54:57 T:139974950504192 DEBUG: Process - The source file to load is /home/lasse/.xbmc/addons/script.module.simple.downloader/default.py
    17:54:57 T:139974691743488 DEBUG: Thread Jobworker start, auto delete: 1
    17:54:57 T:139975275669440 DEBUG: Process - no profile autoexec.py (/home/lasse/.xbmc/userdata/autoexec.py) found, skipping
    17:54:57 T:139975275669440 DEBUG: NetworkMessage - Starting network services
    17:54:57 T:139975275669440 NOTICE: ES: Starting event server
    17:54:57 T:139974683350784 DEBUG: Thread CEventServer start, auto delete: 0
    17:54:57 T:139975275669440 INFO: JSONRPC Server: Successfully initialized
    17:54:57 T:139974683350784 NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
    17:54:57 T:139974683350784 NOTICE: UDP: Listening on port 9777
    17:54:57 T:139974703826688 DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update
    17:54:57 T:139974950504192 DEBUG: Process - Setting the Python path to /home/lasse/.xbmc/addons/script.module.simple.downloader:/home/lasse/.xbmc/addons/script.module.simplejson/lib:/home/lasse/.xbmc/addons/script.module.beautifulsoup/lib:/usr/share/xbmc/addons/script.module.pil/lib:/home/lasse/.xbmc/addons/script.common.plugin.cache/lib:/home/lasse/.xbmc/addons/script.module.simple.downloader/lib:/home/lasse/.xbmc/addons/script.module.parsedom/lib:/home/lasse/.xbmc/addons/script.module.elementtree/lib:/usr/share/xbmc/addons/script.module.pysqlite/lib:/usr/lib/python27.zip:/usr/lib/python2.7:/usr/lib/python2.7/plat-linux2:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/lib/python2.7/site-packages:/usr/lib/python2.7/site-packages/gtk-2.0:
    17:54:57 T:139974691743488 INFO: WEATHER: Downloading weather
    17:54:57 T:139974950504192 DEBUG: Process - Entering source directory /home/lasse/.xbmc/addons/script.module.simple.downloader
    17:54:57 T:139974691743488 INFO: initializing python engine.
    17:54:57 T:139974691743488 DEBUG: new python thread created. id=4
    17:54:57 T:139975275669440 INFO: CZeroconfAvahi::clientCallback: avahi server not available. But may become later...
    17:54:57 T:139975275669440 NOTICE: starting zeroconf publishing
    17:54:57 T:139975275669440 DEBUG: CLastfmScrobbler: Clearing session.
    17:54:57 T:139975275669440 DEBUG: CLibrefmScrobbler: Clearing session.
    17:54:57 T:139974586394368 DEBUG: Thread XBPyThread start, auto delete: 0
    17:54:57 T:139974586394368 DEBUG: Python thread: start processing
    17:54:57 T:139974674958080 DEBUG: Thread JSONRPC::CTCPServer start, auto delete: 0
    17:54:57 T:139974569608960 DEBUG: Thread Jobworker start, auto delete: 1
    17:54:57 T:139974703826688 DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.* FROM (SELECT idAlbum

  • Recent update segfaults several browsers

    A couple of days ago I updated my system (it's been 2 weeks since the last update). After the update my firefox crashes almost instantly (even in safe-mode). First I thought it's only firefox (because chromium works just fine). I tried different arch packages (firefox-28.0-1, firefox-aurora, firefox-nightly) and even the binary packaged provided by mozilla itself, all with the same result.
    But the strange thing is, it nearly broke every other browser except chromium (and dillo). I tried jumanki, luakit, midori and surf (all result in a segmentation fault immediately after executing).
    Things I've tried:
    * Different kernels (linux-lts, 3.14-5, 3.14.1-1, 3.13-7)
    * Different nvidia-drivers (334.21-2, 334.21-4, , 319.32-2)
    * Also happens with the nouveau driver
    * Downgrading to the state before the update (still segfaults)
    * Memtest86 (no errors)
    I really don't have any ideas what happened, before the update everything worked fine. And afterwards (even after downgrading all packages) there's no chance for using a browser except chromium.
    I'm thankful for every hint and advices on what to try...
    Additional Info:
    firefox output:
    (process:19586): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed
    [2] 19586 segmentation fault (core dumped) firefox
    firefox 2.19s user 0.69s system 39% cpu 7.245 total
    luakit --verbose
    [ 0.076935] D: luakit: luaH_loadrc:398: Loading rc: /etc/xdg/luakit/rc.lua
    [ 0.244570] D: luakit: signal_object_emit:203: emit "property::ssl_ca_file" on 0x171e640 from /etc/xdg/luakit/globals.lua:36 (0 args, 0 nret)
    [ 0.244650] D: luakit: signal_object_emit:203: emit "property::ssl_strict" on 0x171e640 from /etc/xdg/luakit/globals.lua:42 (0 args, 0 nret)
    [ 0.244705] D: luakit: signal_object_emit:203: emit "property::accept_policy" on 0x171e640 from /etc/xdg/luakit/globals.lua:46 (0 args, 0 nret)
    [ 0.249045] D: luakit: luaH_class_add_signal:188: add "request-started" on 0x62a640 from /usr/share/luakit/lib/cookies.lua:100
    [ 0.249089] D: luakit: luaH_class_add_signal:188: add "cookie-changed" on 0x62a640 from /usr/share/luakit/lib/cookies.lua:116
    [ 0.249119] D: luakit: luaH_class_add_signal:188: add "can-close" on 0x62a600 from /usr/share/luakit/lib/cookies.lua:159
    [ 0.254572] D: luakit: signal_object_emit:203: emit "new" on 0x1756d50 from /usr/share/luakit/lib/downloads.lua:84 (1 args, 0 nret)
    [ 0.254617] D: luakit: luaH_object_add_signal:156: add "timeout" on 0x4133c5a8 from /usr/share/luakit/lib/downloads.lua:85
    [ 0.254651] D: luakit: luaH_class_add_signal:188: add "can-close" on 0x62a600 from /usr/share/luakit/lib/downloads.lua:217
    [ 0.258432] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:25 (1 args, 0 nret)
    [ 0.275527] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x41277510 from /etc/xdg/luakit/window.lua:build:25 (0 args, 0 nret)
    [ 0.275590] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:26 (1 args, 0 nret)
    [ 0.275692] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x41277620 from /etc/xdg/luakit/window.lua:build:26 (0 args, 0 nret)
    [ 0.275730] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:27 (1 args, 0 nret)
    [ 0.275897] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x412778b8 from /etc/xdg/luakit/window.lua:build:27 (0 args, 0 nret)
    [ 0.275930] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:28 (1 args, 0 nret)
    [ 0.276141] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x412779c8 from /etc/xdg/luakit/window.lua:build:28 (0 args, 0 nret)
    [ 0.276174] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:29 (1 args, 0 nret)
    [ 0.276507] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x41277ad8 from /etc/xdg/luakit/window.lua:build:29 (0 args, 0 nret)
    [ 0.276545] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /usr/share/luakit/lib/lousy/widget/tablist.lua:tablist:93 (1 args, 0 nret)
    [ 0.276608] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4126a4f0 from /usr/share/luakit/lib/lousy/widget/tablist.lua:tablist:93 (0 args, 0 nret)
    [ 0.276653] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:34 (1 args, 0 nret)
    [ 0.276702] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x41277bb0 from /etc/xdg/luakit/window.lua:build:34 (0 args, 0 nret)
    [ 0.276732] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:35 (1 args, 0 nret)
    [ 0.276775] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4133b2f8 from /etc/xdg/luakit/window.lua:build:35 (0 args, 0 nret)
    [ 0.276804] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:38 (1 args, 0 nret)
    [ 0.276849] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128ecd8 from /etc/xdg/luakit/window.lua:build:38 (0 args, 0 nret)
    [ 0.276878] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:39 (1 args, 0 nret)
    [ 0.276920] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128ede8 from /etc/xdg/luakit/window.lua:build:39 (0 args, 0 nret)
    [ 0.276952] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:40 (1 args, 0 nret)
    [ 0.277388] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128f508 from /etc/xdg/luakit/window.lua:build:40 (0 args, 0 nret)
    [ 0.277424] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:41 (1 args, 0 nret)
    [ 0.277494] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128f618 from /etc/xdg/luakit/window.lua:build:41 (0 args, 0 nret)
    [ 0.277525] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:42 (1 args, 0 nret)
    [ 0.277593] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128f728 from /etc/xdg/luakit/window.lua:build:42 (0 args, 0 nret)
    [ 0.277624] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:45 (1 args, 0 nret)
    [ 0.277668] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128f838 from /etc/xdg/luakit/window.lua:build:45 (0 args, 0 nret)
    [ 0.277698] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:48 (1 args, 0 nret)
    [ 0.277744] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128fa38 from /etc/xdg/luakit/window.lua:build:48 (0 args, 0 nret)
    [ 0.277775] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:49 (1 args, 0 nret)
    [ 0.277818] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128fb48 from /etc/xdg/luakit/window.lua:build:49 (0 args, 0 nret)
    [ 0.277849] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:50 (1 args, 0 nret)
    [ 0.277917] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128fc58 from /etc/xdg/luakit/window.lua:build:50 (0 args, 0 nret)
    [ 0.277948] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:51 (1 args, 0 nret)
    [ 0.278024] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128fd68 from /etc/xdg/luakit/window.lua:build:51 (0 args, 0 nret)
    [ 0.278055] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:52 (1 args, 0 nret)
    [ 0.278123] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128fe78 from /etc/xdg/luakit/window.lua:build:52 (0 args, 0 nret)
    [ 0.278155] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:53 (1 args, 0 nret)
    [ 0.278222] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4128ff88 from /etc/xdg/luakit/window.lua:build:53 (0 args, 0 nret)
    [ 0.278256] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /usr/share/luakit/lib/lousy/widget/menu.lua:menu:265 (1 args, 0 nret)
    [ 0.278303] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x412900e8 from /usr/share/luakit/lib/lousy/widget/menu.lua:menu:265 (0 args, 0 nret)
    [ 0.278341] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:62 (1 args, 0 nret)
    [ 0.278388] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x41277770 from /etc/xdg/luakit/window.lua:build:62 (0 args, 0 nret)
    [ 0.278418] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:63 (1 args, 0 nret)
    [ 0.278462] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x413488c8 from /etc/xdg/luakit/window.lua:build:63 (0 args, 0 nret)
    [ 0.278491] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:64 (1 args, 0 nret)
    [ 0.278560] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x413489d8 from /etc/xdg/luakit/window.lua:build:64 (0 args, 0 nret)
    [ 0.278591] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/window.lua:build:65 (1 args, 0 nret)
    [ 0.299044] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x41348ae8 from /etc/xdg/luakit/window.lua:build:65 (0 args, 0 nret)
    [ 0.299155] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x412779c8 from /etc/xdg/luakit/window.lua:build:71 (1 args, 0 nret)
    [ 0.299193] D: luakit: luaH_object_emit_signal:285: emit "add" on 0x41277620 from /etc/xdg/luakit/window.lua:build:71 (1 args, 0 nret)
    [ 0.299222] D: luakit: luaH_object_emit_signal:285: emit "property::child" on 0x41277620 from /etc/xdg/luakit/window.lua:build:71 (0 args, 0 nret)
    [ 0.299264] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x412778b8 from /etc/xdg/luakit/window.lua:build:72 (1 args, 0 nret)
    [ 0.299307] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x41277620 from /etc/xdg/luakit/window.lua:build:73 (1 args, 0 nret)
    [ 0.299346] D: luakit: luaH_object_emit_signal:285: emit "add" on 0x41277510 from /etc/xdg/luakit/window.lua:build:73 (1 args, 0 nret)
    [ 0.299375] D: luakit: luaH_object_emit_signal:285: emit "property::child" on 0x41277510 from /etc/xdg/luakit/window.lua:build:73 (0 args, 0 nret)
    [ 0.299422] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4126a4f0 from /etc/xdg/luakit/window.lua:build:76 (1 args, 0 nret)
    [ 0.299482] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x41277ad8 from /etc/xdg/luakit/window.lua:build:79 (1 args, 0 nret)
    [ 0.299535] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128f508 from /etc/xdg/luakit/window.lua:build:83 (1 args, 0 nret)
    [ 0.299580] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128f618 from /etc/xdg/luakit/window.lua:build:84 (1 args, 0 nret)
    [ 0.299624] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128f728 from /etc/xdg/luakit/window.lua:build:85 (1 args, 0 nret)
    [ 0.299671] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128ecd8 from /etc/xdg/luakit/window.lua:build:86 (1 args, 0 nret)
    [ 0.299704] D: luakit: luaH_object_emit_signal:285: emit "add" on 0x4128ede8 from /etc/xdg/luakit/window.lua:build:86 (1 args, 0 nret)
    [ 0.299732] D: luakit: luaH_object_emit_signal:285: emit "property::child" on 0x4128ede8 from /etc/xdg/luakit/window.lua:build:86 (0 args, 0 nret)
    [ 0.299767] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128fc58 from /etc/xdg/luakit/window.lua:build:90 (1 args, 0 nret)
    [ 0.299811] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128fd68 from /etc/xdg/luakit/window.lua:build:91 (1 args, 0 nret)
    [ 0.299855] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128fe78 from /etc/xdg/luakit/window.lua:build:92 (1 args, 0 nret)
    [ 0.299899] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128ff88 from /etc/xdg/luakit/window.lua:build:93 (1 args, 0 nret)
    [ 0.299945] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128fa38 from /etc/xdg/luakit/window.lua:build:94 (1 args, 0 nret)
    [ 0.299977] D: luakit: luaH_object_emit_signal:285: emit "add" on 0x4128fb48 from /etc/xdg/luakit/window.lua:build:94 (1 args, 0 nret)
    [ 0.300005] D: luakit: luaH_object_emit_signal:285: emit "property::child" on 0x4128fb48 from /etc/xdg/luakit/window.lua:build:94 (0 args, 0 nret)
    [ 0.300043] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128ede8 from /etc/xdg/luakit/window.lua:build:98 (1 args, 0 nret)
    [ 0.300089] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128f838 from /etc/xdg/luakit/window.lua:build:99 (1 args, 0 nret)
    [ 0.300136] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4128fb48 from /etc/xdg/luakit/window.lua:build:100 (1 args, 0 nret)
    [ 0.300182] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x41277bb0 from /etc/xdg/luakit/window.lua:build:101 (1 args, 0 nret)
    [ 0.300214] D: luakit: luaH_object_emit_signal:285: emit "add" on 0x4133b2f8 from /etc/xdg/luakit/window.lua:build:101 (1 args, 0 nret)
    [ 0.300242] D: luakit: luaH_object_emit_signal:285: emit "property::child" on 0x4133b2f8 from /etc/xdg/luakit/window.lua:build:101 (0 args, 0 nret)
    [ 0.300803] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4133b2f8 from /etc/xdg/luakit/window.lua:build:102 (1 args, 0 nret)
    [ 0.300996] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x412900e8 from /etc/xdg/luakit/window.lua:build:105 (1 args, 0 nret)
    [ 0.301055] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x413489d8 from /etc/xdg/luakit/window.lua:build:110 (1 args, 0 nret)
    [ 0.301103] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x41348ae8 from /etc/xdg/luakit/window.lua:build:111 (1 args, 0 nret)
    [ 0.301149] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x41277770 from /etc/xdg/luakit/window.lua:build:112 (1 args, 0 nret)
    [ 0.301181] D: luakit: luaH_object_emit_signal:285: emit "add" on 0x413488c8 from /etc/xdg/luakit/window.lua:build:112 (1 args, 0 nret)
    [ 0.301210] D: luakit: luaH_object_emit_signal:285: emit "property::child" on 0x413488c8 from /etc/xdg/luakit/window.lua:build:112 (0 args, 0 nret)
    [ 0.301298] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x413488c8 from /etc/xdg/luakit/window.lua:build:113 (1 args, 0 nret)
    [ 0.301366] D: luakit: luaH_object_emit_signal:285: emit "property::show_frame" on 0x41348ae8 from /etc/xdg/luakit/window.lua:build:116 (0 args, 0 nret)
    [ 0.301406] D: luakit: luaH_object_emit_signal:285: emit "property::show_tabs" on 0x41277ad8 from /etc/xdg/luakit/window.lua:build:117 (0 args, 0 nret)
    [ 0.301473] D: luakit: luaH_object_emit_signal:285: emit "property::selectable" on 0x4128f508 from /etc/xdg/luakit/window.lua:build:120 (0 args, 0 nret)
    [ 0.301529] D: luakit: luaH_object_add_signal:156: add "destroy" on 0x41277510 from /etc/xdg/luakit/window.lua:func:164
    [ 0.301563] D: luakit: luaH_object_add_signal:156: add "key-press" on 0x41277510 from /etc/xdg/luakit/window.lua:func:172
    [ 0.301603] D: luakit: luaH_object_add_signal:156: add "changed" on 0x41348ae8 from /etc/xdg/luakit/modes.lua:func:57
    [ 0.301632] D: luakit: luaH_object_add_signal:156: add "property::position" on 0x41348ae8 from /etc/xdg/luakit/modes.lua:func:62
    [ 0.301661] D: luakit: luaH_object_add_signal:156: add "activate" on 0x41348ae8 from /etc/xdg/luakit/modes.lua:func:68
    [ 0.302638] D: luakit: luaH_object_emit_signal:285: emit "property::icon" on 0x41277510 from /etc/xdg/luakit/window.lua:func:247 (0 args, 0 nret)
    [ 0.302677] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /usr/share/luakit/lib/proxy.lua:func:139 (1 args, 0 nret)
    [ 0.302762] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x413496c8 from /usr/share/luakit/lib/proxy.lua:func:139 (0 args, 0 nret)
    [ 0.302879] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x413496c8 from /usr/share/luakit/lib/proxy.lua:func:140 (1 args, 0 nret)
    [ 0.303074] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x413496c8 from /usr/share/luakit/lib/proxy.lua:func:143 (0 args, 0 nret)
    [ 0.303230] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x413496c8 from /usr/share/luakit/lib/proxy.lua:func:144 (0 args, 0 nret)
    [ 0.303351] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x41348ae8 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.303480] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x4128fc58 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.303596] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x413489d8 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.303719] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x4128fe78 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.303847] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x4128ff88 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.303970] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x4128f728 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.304095] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x4128f508 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.304222] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x4128f618 from /etc/xdg/luakit/window.lua:func:209 (0 args, 0 nret)
    [ 0.304268] D: luakit: luaH_object_emit_signal:285: emit "property::bg" on 0x4128fb48 from /etc/xdg/luakit/window.lua:func:219 (0 args, 0 nret)
    [ 0.304304] D: luakit: luaH_object_emit_signal:285: emit "property::bg" on 0x4133b2f8 from /etc/xdg/luakit/window.lua:func:219 (0 args, 0 nret)
    [ 0.304340] D: luakit: luaH_object_emit_signal:285: emit "property::bg" on 0x413488c8 from /etc/xdg/luakit/window.lua:func:219 (0 args, 0 nret)
    [ 0.304375] D: luakit: luaH_object_emit_signal:285: emit "property::bg" on 0x4128ede8 from /etc/xdg/luakit/window.lua:func:219 (0 args, 0 nret)
    [ 0.304412] D: luakit: luaH_object_emit_signal:285: emit "property::bg" on 0x41348ae8 from /etc/xdg/luakit/window.lua:func:219 (0 args, 0 nret)
    [ 0.304448] D: luakit: luaH_object_emit_signal:285: emit "property::bg" on 0x4128f838 from /etc/xdg/luakit/window.lua:func:219 (0 args, 0 nret)
    [ 0.304697] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4128fd68 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.304832] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4128ff88 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.304873] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x41348ae8 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.305004] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4128f618 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.305136] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4128fc58 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.305267] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4128fe78 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.305388] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x413489d8 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.305539] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4128f508 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.305670] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4128f728 from /etc/xdg/luakit/window.lua:func:232 (0 args, 0 nret)
    [ 0.305723] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /usr/share/luakit/lib/downloads.lua:func:207 (1 args, 0 nret)
    [ 0.305803] D: luakit: luaH_object_emit_signal:285: emit "init" on 0x4134a9a0 from /usr/share/luakit/lib/downloads.lua:func:207 (0 args, 0 nret)
    [ 0.305905] D: luakit: luaH_object_emit_signal:285: emit "parent-set" on 0x4134a9a0 from /usr/share/luakit/lib/downloads.lua:func:208 (1 args, 0 nret)
    [ 0.306068] D: luakit: luaH_object_emit_signal:285: emit "property::fg" on 0x4134a9a0 from /usr/share/luakit/lib/downloads.lua:func:212 (0 args, 0 nret)
    [ 0.306205] D: luakit: luaH_object_emit_signal:285: emit "property::font" on 0x4134a9a0 from /usr/share/luakit/lib/downloads.lua:func:213 (0 args, 0 nret)
    [ 0.306235] D: luakit: luaH_object_add_signal:156: add "page-added" on 0x41277ad8 from /etc/xdg/luakit/window.lua:func:134
    [ 0.306265] D: luakit: luaH_object_add_signal:156: add "switch-page" on 0x41277ad8 from /etc/xdg/luakit/window.lua:func:141
    [ 0.306294] D: luakit: luaH_object_add_signal:156: add "page-reordered" on 0x41277ad8 from /etc/xdg/luakit/window.lua:func:157
    [ 0.306325] D: luakit: luaH_object_add_signal:156: add "switch-page" on 0x41277ad8 from /usr/share/luakit/lib/webinspector.lua:func:30
    [ 0.306358] D: luakit: luaH_object_add_signal:156: add "focus" on 0x41277510 from /etc/xdg/luakit/window.lua:func:251
    [ 0.306411] D: luakit: signal_object_emit:203: emit "new" on 0x1756c90 from /etc/xdg/luakit/webview.lua:new:320 (1 args, 0 nret)
    [1] 20761 segmentation fault (core dumped) luakit --verbose
    Upgraded Packages:
    boost-libs (1.55.0-4 -> 1.55.0-5)
    akonadi (1.12.0-1 -> 1.12.1-1)
    apr-util (1.5.3-3 -> 1.5.3-4)
    readline (6.3-3 -> 6.3.003-2)
    bash (4.3-3 -> 4.3.008-2)
    boost (1.55.0-4 -> 1.55.0-5)
    openssl (1.0.1.f-1 -> 1.0.1.g-1)
    gmp (5.1.3-2 -> 6.0.0-1)
    coreutils (8.22-3 -> 8.22-4)
    ca-certificates (20130906-1 -> 20140325-1)
    sqlite (3.8.4.1-1 -> 3.8.4.3-1)
    nss (3.15.5-1 -> 3.16-1)
    kmod (16-1 -> 17-1)
    libsystemd (211-1 -> 212-2)
    libutil-linux (2.24.1-3 -> 2.24.1-6)
    util-linux (2.24.1-3 -> 2.24.1-6)
    systemd (211-1 -> 212-2)
    python (3.3.5-1 -> 3.4.0-2)
    python-xdg (0.25-1 -> 0.25-2)
    speech-dispatcher (0.8-2 -> 0.8-3)
    chromium (33.0.1750.152-1 -> 34.0.1847.116-1)
    curl (7.35.0-1 -> 7.36.0-1)
    fontconfig (2.11.0-1 -> 2.11.1-1)
    gnutls (3.2.12.1-1 -> 3.2.13-1)
    x264 (20131030-2 -> 1:142.20140311-1)
    x265 (0.9-1)
    ffmpeg (1:2.1.4-1 -> 1:2.2.1-1)
    ffmpeg-compat (1:0.10.12-1 -> 1:0.10.12-2)
    fftw (3.3.3-2 -> 3.3.4-1)
    file (5.17-2 -> 5.18-1)
    flashplugin (11.2.202.346-1 -> 11.2.202.350-1)
    gsettings-desktop-schemas (3.10.1-1)
    baobab (3.10.1-1)
    flex (2.5.38-1 -> 2.5.39-1)
    libunicodenames (1.1.0_beta1-1)
    fontforge (20140101-1 -> 20140101-2)
    libjpeg-turbo (1.3.0-4 -> 1.3.1-1)
    ghostscript (9.10-3 -> 9.14-1)
    pcre (8.34-2 -> 8.35-1)
    git (1.9.1-1 -> 1.9.2-1)
    groff (1.22.2-5 -> 1.22.2-6)
    guile (2.0.9-1 -> 2.0.11-1)
    vim-runtime (7.4.135-2 -> 7.4.214-1)
    gvim (7.4.135-2 -> 7.4.214-1)
    highlight (3.17-1 -> 3.18-1)
    jre7-openjdk-headless (7.u51_2.4.5-1 -> 7.u51_2.4.6-1)
    jre7-openjdk (7.u51_2.4.5-1 -> 7.u51_2.4.6-1)
    jdk7-openjdk (7.u51_2.4.5-1 -> 7.u51_2.4.6-1)
    jemalloc (3.5.1-1 -> 3.6.0-1)
    kdelibs (4.12.3-1 -> 4.12.4-1)
    kdegraphics-mobipocket (4.12.3-1 -> 4.12.4-1)
    nepomuk-core (4.12.3-1 -> 4.12.4-1)
    kactivities (4.12.3-1 -> 4.12.4-1)
    kdebase-katepart (4.12.3-1 -> 4.12.4-1)
    oxygen-icons (4.12.3-1 -> 4.12.4-1)
    xorg-xauth (1.0.8-1 -> 1.0.9-1)
    kdebase-runtime (4.12.3-1 -> 4.12.4-1)
    kdeedu-marble (4.12.3-1 -> 4.12.4-1)
    libkexiv2 (4.12.3-1 -> 4.12.4-1)
    kdegraphics-okular (4.12.3-1 -> 4.12.4-1)
    nvidia-utils (334.21-6 -> 334.21-7)
    nvidia-libgl (334.21-6 -> 334.21-7)
    qt4 (4.8.5-7 -> 4.8.5-8)
    prison (1.1.0-1 -> 1.1.1-1)
    kdepimlibs (4.12.3-1 -> 4.12.4-1)
    libkgapi (2.1.0-1 -> 2.1.1-1)
    kdepim-runtime (4.12.3-1 -> 4.12.4-1)
    kdepim-libkdepim (4.12.3-1 -> 4.12.4-1)
    lib32-keyutils (1.5.8-1 -> 1.5.9-1)
    libdrm (2.4.52-1 -> 2.4.53-1)
    lib32-libdrm (2.4.52-1 -> 2.4.53-1)
    lib32-nspr (4.10.3-1 -> 4.10.4-1)
    lib32-sqlite (3.8.4.1-1 -> 3.8.4.3-1)
    lib32-nss (3.15.4-1 -> 3.15.5-1)
    lib32-openssl (1.0.1.f-1 -> 1.0.1.g-1)
    lib32-pango (1.36.2-1 -> 1.36.3-1)
    lib32-systemd (211-1 -> 212-1)
    libftdi (1.1-3 -> 1.1-6)
    libmediainfo (0.7.67-1 -> 0.7.68-1)
    libpipeline (1.2.6-1 -> 1.3.0-1)
    libreoffice-en-US (4.2.2-2 -> 4.2.3-1)
    librsvg (1:2.40.1-3 -> 1:2.40.2-1)
    libreoffice-common (4.2.2-2 -> 4.2.3-1)
    libreoffice-base (4.2.2-2 -> 4.2.3-1)
    libreoffice-calc (4.2.2-2 -> 4.2.3-1)
    libreoffice-writer (4.2.2-2 -> 4.2.3-1)
    libtorrent-rasterbar (1:0.16.15-1 -> 1:0.16.16-1)
    libyaml (0.1.5-1 -> 0.1.6-1)
    linux (3.13.7-1 -> 3.14-4)
    linux-headers (3.13.7-1 -> 3.14-4)
    lirc-utils (1:0.9.0-70 -> 1:0.9.0-71)
    lua-expat (1.2.0-4 -> 1.3.0-1)
    lua51-expat (1.2.0-4 -> 1.3.0-1)
    man-pages (3.63-1 -> 3.64-1)
    mediainfo (0.7.67-1 -> 0.7.68-1)
    mencoder (36498-5 -> 37051-2)
    mercurial (2.9.1-1 -> 2.9.2-1)
    yajl (2.0.4-2 -> 2.1.0-1)
    mpd (0.18.9-1 -> 0.18.10-1)
    nvidia (334.21-2 -> 334.21-4)
    openvpn (2.3.2-2 -> 2.3.3-1)
    pacman-mirrorlist (20140107-1 -> 20140405-1)
    perl-xml-libxml (2.0110-1 -> 2.0115-1)
    pyalpm (0.6.2-1 -> 0.6.2-2)
    pygobject2-devel (2.28.6-9 -> 2.28.6-10)
    pyqt4-common (4.10.3-1 -> 4.10.4-2)
    python-dbus-common (1.2.0-2 -> 1.2.0-3)
    python-docutils (0.11-1 -> 0.11-2)
    python-setuptools (3.3-1 -> 3.4.4-1)
    python-pip (1.5.4-1 -> 1.5.4-2)
    python2-beaker (1.6.4-1 -> 1.6.4-2)
    python2-ply (3.4-3 -> 3.4-4)
    python2-pycparser (2.10-3 -> 2.10-4)
    python2-cffi (0.8.2-3 -> 0.8.2-4)
    python2-chardet (2.2.1-1 -> 2.2.1-2)
    python2-crypto (2.6.1-1 -> 2.6.1-2)
    python2-six (1.6.1-1 -> 1.6.1-2)
    python2-cryptography (0.2.2-1 -> 0.3-1)
    python2-cssselect (0.9.1-1 -> 0.9.1-2)
    python2-dbus (1.2.0-2 -> 1.2.0-3)
    python2-gobject2 (2.28.6-9 -> 2.28.6-10)
    python2-httplib2 (0.8-2 -> 0.8-3)
    python2-lxml (3.3.3-1 -> 3.3.4-1)
    python2-markupsafe (0.19-1 -> 0.19-2)
    python2-mako (0.9.1-1 -> 0.9.1-2)
    python2-pyopenssl (0.14-2 -> 0.14-3)
    sip (4.15.4-1 -> 4.15.5-2)
    python2-sip (4.15.4-1 -> 4.15.5-2)
    python2-pyqt4 (4.10.3-1 -> 4.10.4-2)
    python2-setuptools (3.3-1 -> 3.4.4-1)
    python2-simplejson (3.3.3-1 -> 3.4.0-1)
    python2-sqlalchemy (0.9.3-1 -> 0.9.4-1)
    python2-xdg (0.25-1 -> 0.25-2)
    python2-zope-interface (4.1.0-1 -> 4.1.1-1)
    qtcreator (3.1.0beta1-2 -> 3.1.0rc1-1)
    ranger (1.6.1-1 -> 1.6.1-2)
    reflector (2014-2 -> 2014-4)
    s-nail (14.6.2-1 -> 14.6.4-1)
    sg3_utils (1.37-1 -> 1.38-1)
    systemd-sysvcompat (211-1 -> 212-2)
    tzdata (2014a-1 -> 2014b-1)
    virtualbox-host-modules (4.3.10-1 -> 4.3.10-2)
    vlc (2.1.4-1 -> 2.1.4-2)
    xcb-proto (1.10-1 -> 1.10-2)
    xorg-util-macros (1.18.0-1 -> 1.19.0-1)
    xorg-xrandr (1.4.1-1 -> 1.4.2-1)
    Last edited by qr (2014-04-15 08:48:49)

    Thank you both for the tips!
    Pse wrote:Hardware failure? Run a Live-CD for a while and see if you get segfaults there too.
    I thought about that too, that's why I ran memtest. Because I thought if there's some failure it's most likely the RAM, but the test showed no errors. Unfortunately I don't have a live medium near me (and no possibility to download one, because of my current internet connection), but I still have OSX on a second partition. I can run firefox without any problems on OSX.
    Tobi042 wrote:I may have a related problem.I found a LOT of segfaults of in libgnutls in dmesg as soon as I started chromium.
    In this thread, someone also has a problem with the current version of gnutls. He found, that downgrading the library solved the problem.
    I can reproduce this fix. Maybe it will help you too.
    Thanks for this. I downgraded gnutls, but I still get segfaults. Thanks to the linked thread I checked my journal, and I get the same error message as I get with gdb:
    luakit[15412]: segfault at 8 ip 00007effc2739d88 sp 00007fff7d017c80 error 4 in ld-2.19.so
    ld-2-19.so is owned by glibc. I tried to downgrade it (even to 2-18), but I still get segfaults...
    Everything looks like the problem is related to glibc...

  • Segfault while downloading with pacman

    Hello y'all,
    The headline pretty much says it. I tried writing up a PKGBUILD for CCP4 which involved sourcing an install script (which changed some environment variables, nothing that should have an effect on pacman usage after restart IMHO) and screwing around with make and (accidentally) sudo make. After that, I realized that I couldn't download anything using pacman. Refreshing the master package list showed me the
    core 0.0 K 0.0 K/s 00:00:00 [---] 0%
    line for a few seconds, followed by said segfault. The same happens when pacman tries downloading a package without refreshing the master package list.
    Neither I nor the script changed anything in /etc/pacman*, though I had several problems with libraries while writing the CCP4 PKGBUILD. All other pacman functions that do not involve downloading work fine. PKGBUILD (in case anyone is interested) is attached.
    Does anyone have an idea how I could solve this (apart from reinstalling)?
    PKGBUILD:
    #CAUTION: NOT WORKING YET. Also, licenses not yet included.
    # Contributor: Patrice Peterson <[email protected]>
    pkgname=ccp4
    pkgver=6.1.1
    pkgrel=1
    pkgdesc="Suite for crystallographic structure solution. Includes Phaser + CCTBX"
    arch=(i686 x86_64)
    url="http://www.ccp4.ac.uk/"
    license=('custom')
    depends=('tcl' 'tk' 'blt' 'graphviz' 'fasta' 'clustalw' 'python>=2.4.2')
    makedepends=()
    optdepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=(zipman)
    install=
    phaser_ver=2.1.4
    source=(ftp://ftp.ccp4.ac.uk/ccp4/${pkgver}/ccp4-${pkgver}-core-src.tar.gz
    ftp://ftp.ccp4.ac.uk/ccp4/${pkgver}/phaser-${phaser_ver}-cctbx-src.tar.gz)
    md5sums=('aeb3eed9f789b3a60894b2d9be8ed43a'
    'eb6371d4a7339fe81e71a9170fea614d')
    build() {
    cd "$srcdir/$pkgname-$pkgver"
    # CCP4 comes with install scripts for several shells (csh natively)
    # Keep ccp4.setup-bash unchanged as a reference, use ccp4.setup as setup script
    cp include/ccp4.setup-bash include/ccp4.setup
    case $SHELL in
    /bin/bash)
    sed "s/\/xtal/\$\{srcdir\}/" -i include/ccp4.setup
    sed "s/\/tmp\/\$USER/\/tmp\/ccp4\-\$USER/" -i include/ccp4.setup
    sed "s/\/usr\/local\/bin/\/usr\/bin/" -i include/ccp4.setup
    echo "This shell isn't supported yet." # Placeholder
    exit 1
    esac
    source include/ccp4.setup
    ./configure --prefix=/usr --with-shared-libs linux
    make || return 1
    make DESTDIR="${pkgdir}/" install
    # vim:set ts=2 sw=2 et:

    On this way it is not easy to offer exact diagnostic but it is logic that by download and data transfer HDD runs constantly and you will hear this HDD activity. In idle state HDD activity is on minimum level and you will not hear it.
    I cannot say for sure if HDD is defective or not but fact is when you will hear loud and clicking noise it can be sign that HDD can be at the end of its life. Be careful about all this and back up all your important data.

  • Tk segfault

    I want to use python-matplotlib, but it segfaults. An example to reproduce it, is with this code snippet:
    import pylab as P
    P.plot([1,2,3,5,2,3])
    P.show()
    Running it with gdb shows:
    Program received signal SIGSEGV, Segmentation fault.
    [Switching to Thread -1211431232 (LWP 15836)]
    0xb610723d in PyAggImagePhoto ()
       from /usr/lib/python2.5/site-packages/matplotlib/backends/_tkagg.so
    strace shows, it crashes right after reading tclIndex
    open("/usr/lib/tcl8.4/tclIndex", O_RDONLY|O_LARGEFILE) = 4
    fcntl64(4, F_SETFD, FD_CLOEXEC)         = 0
    ioctl(4, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbfd7a1b8) = -1 ENOTTY (Inappropriate ioctl for device)
    read(4, "# Tcl autoload index file, versi"..., 4096) = 4096
    read(4, "Name) [list source [file join $d"..., 4096) = 2001
    read(4, "", 4096)                       = 0
    close(4)                                = 0
    --- SIGSEGV (Segmentation fault) @ 0 (0) ---
    +++ killed by SIGSEGV +++
    I compiled my own matplotlib, but that doesn't give me any hints and segfaults in the same way.
    Should i file this as a bug of python-matplotlib?

    marcelomorales,
    Welcome to Arch Linux.  I hope you do not mind, but I added BBCode code tags to your post.  You can edit the post to see how I did it.  There is also a reference link under the posts boxes in these forums.

  • [WORKAROUND] libxcursor 1.1.14-2 causes apps segfaults

    Did an update today and system is half usable now, every other apps is not opening Im getting this
    leafpad[726]: segfault at 7fff37c71fe8 ip 00007faf425230ff sp 00007fff37c71ff0 error 6 in libc-2.19.so[7faf424b9000+1a4000]"
    systemd-journald[190]: Failed to write entry (26 items, 37929567 bytes) despite vacuuming, ignoring: Argument list too long
    [ 198.872476] systemd-journald[190]: Deleted empty journal /var/log/journal/83ce0cb99a864d9384c0ec864b8b7cf3/[email protected]0000000000.journal (6557696 bytes)
    Tried rolling back kernel without luck.
    cpu 3930k
    ram 16gb
    gpu evga 670gtx
    mobo asus rampage iv gene
    / - 256gb ssd /home 1tb hdd
    Last edited by rusty725 (2014-06-07 02:54:49)

    Downgraded to 1.1.14-1 and the problem persists. I can't use rxvt, weechat, and maybe other packages too.
    ~ > pacaur -Qs libxcursor
    local/lib32-libxcursor 1.1.14-1
    X cursor management library (32-bit)
    local/libxcursor 1.1.14-1
    X cursor management library
    ~ > grep 2014-06-03 /var/log/pacman.log
    [2014-06-03 15:52] [PACMAN] Running 'pacman -Syy'
    [2014-06-03 15:52] [PACMAN] synchronizing package lists
    [2014-06-03 15:55] [PACMAN] Running 'pacman -S -u'
    [2014-06-03 15:55] [PACMAN] starting full system upgrade
    [2014-06-03 15:56] [PACMAN] upgraded ffmpeg (1:2.2.2-3 -> 1:2.2.3-1)
    [2014-06-03 15:56] [PACMAN] upgraded gdk-pixbuf2 (2.30.7-1 -> 2.30.8-1)
    [2014-06-03 15:56] [PACMAN] upgraded gnome-icon-theme-symbolic (3.12.0-1 -> 3.12.0-2)
    [2014-06-03 15:56] [PACMAN] upgraded gnome-icon-theme (3.12.0-1 -> 3.12.0-2)
    [2014-06-03 15:56] [PACMAN] upgraded gpgme (1.4.3-1 -> 1.5.0-1)
    [2014-06-03 15:56] [PACMAN] upgraded json-glib (1.0.0-1 -> 1.0.2-1)
    [2014-06-03 15:56] [PACMAN] upgraded lftp (4.5.0-1 -> 4.5.1-1)
    [2014-06-03 15:56] [PACMAN] upgraded libmms (0.6.2-1 -> 0.6.4-1)
    [2014-06-03 15:56] [PACMAN] upgraded libxcursor (1.1.14-1 -> 1.1.14-2)
    [2014-06-03 15:57] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-06-03 15:57] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Starting build: 3.14.5-1-ARCH
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Starting build: 3.14.5-1-ARCH
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2014-06-03 15:57] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-06-03 15:57] [PACMAN] upgraded linux (3.14.4-1 -> 3.14.5-1)
    [2014-06-03 15:57] [PACMAN] upgraded mpc (0.25-1 -> 0.26-1)
    ~ > grep 2014-06-04 /var/log/pacman.log
    [2014-06-04 15:30] [PACMAN] Running 'pacman -S -u'
    [2014-06-04 15:30] [PACMAN] starting full system upgrade
    [2014-06-04 15:30] [PACMAN] upgraded e2fsprogs (1.42.9-2 -> 1.42.10-1)
    [2014-06-04 15:30] [ALPM] warning: /etc/passwd installed as /etc/passwd.pacnew
    [2014-06-04 15:30] [ALPM] warning: /etc/group installed as /etc/group.pacnew
    [2014-06-04 15:30] [PACMAN] upgraded filesystem (2013.05-2 -> 2014.05-2)
    [2014-06-04 15:30] [PACMAN] upgraded lib32-libdbus (1.8.0-1 -> 1.8.2-1)
    [2014-06-04 15:30] [PACMAN] upgraded libsystemd (212-3 -> 213-5)
    [2014-06-04 15:30] [PACMAN] upgraded libatasmart (0.19-2 -> 0.19-3)
    [2014-06-04 15:30] [PACMAN] upgraded mercurial (3.0-1 -> 3.0.1-1)
    [2014-06-04 15:30] [PACMAN] upgraded python-setuptools (3.6-1 -> 4.0.1-1)
    [2014-06-04 15:30] [PACMAN] upgraded python2-setuptools (3.6-1 -> 4.0.1-1)
    [2014-06-04 15:30] [PACMAN] upgraded systemd (212-3 -> 213-5)
    [2014-06-04 15:30] [PACMAN] upgraded systemd-sysvcompat (212-3 -> 213-5)
    [2014-06-04 15:59] [PACMAN] Running 'pacman -Syy'
    [2014-06-04 17:29] [PACMAN] synchronizing package lists
    [2014-06-04 17:40] [PACMAN] Running 'pacman -S python-httplib2'
    [2014-06-04 17:40] [PACMAN] installed python-httplib2 (0.9-2)
    [2014-06-04 17:43] [PACMAN] Running 'pacman -S -u'
    [2014-06-04 17:43] [PACMAN] starting full system upgrade
    [2014-06-04 17:44] [PACMAN] upgraded libwbclient (4.1.7-1 -> 4.1.8-1)
    [2014-06-04 17:44] [PACMAN] upgraded cifs-utils (6.2-1 -> 6.3-1)
    [2014-06-04 17:44] [PACMAN] upgraded cpupower (3.14-2 -> 3.14-3)
    [2014-06-04 17:44] [PACMAN] upgraded libpurple (2.10.9-1 -> 2.10.9-2)
    [2014-06-04 17:44] [PACMAN] upgraded finch (2.10.9-1 -> 2.10.9-2)
    [2014-06-04 17:44] [PACMAN] upgraded graphviz (2.36.0-2 -> 2.36.0-3)
    [2014-06-04 17:45] [PACMAN] upgraded perl (5.18.2-2 -> 5.20.0-2)
    [2014-06-04 17:45] [PACMAN] upgraded vim-runtime (7.4.307-3 -> 7.4.307-4)
    [2014-06-04 17:45] [PACMAN] upgraded gvim (7.4.307-3 -> 7.4.307-4)
    [2014-06-04 17:45] [PACMAN] upgraded imagemagick (6.8.9.1-2 -> 6.8.9.1-3)
    [2014-06-04 17:45] [PACMAN] upgraded libproxy (0.4.11-2 -> 0.4.11-3)
    [2014-06-04 17:45] [PACMAN] upgraded perl-crypt-openssl-random (0.06-1 -> 0.06-2)
    [2014-06-04 17:45] [PACMAN] upgraded perl-html-parser (3.71-2 -> 3.71-3)
    [2014-06-04 17:45] [PACMAN] upgraded perl-xml-fast (0.11-4 -> 0.11-5)
    [2014-06-04 17:45] [PACMAN] upgraded perl-xml-parser (2.41-4 -> 2.41-5)
    [2014-06-04 17:45] [PACMAN] upgraded postgresql-libs (9.3.4-1 -> 9.3.4-2)
    [2014-06-04 17:45] [PACMAN] upgraded rxvt-unicode-terminfo (9.20-1 -> 9.20-2)
    [2014-06-04 17:45] [PACMAN] upgraded rxvt-unicode (9.20-1 -> 9.20-2)
    [2014-06-04 17:45] [PACMAN] upgraded smbclient (4.1.7-1 -> 4.1.8-1)
    [2014-06-04 17:45] [PACMAN] upgraded subversion (1.8.9-1 -> 1.8.9-2)
    [2014-06-04 17:45] [PACMAN] upgraded weechat (0.4.3-1 -> 0.4.3-2)
    [2014-06-04 17:45] [PACMAN] upgraded xfconf (4.10.0-3 -> 4.10.0-4)
    [2014-06-04 18:25] [PACMAN] Running 'pacman -U /var/cache/pacman/pkg/libxcursor-1.1.14-1-x86_64.pkg.tar.xz'
    [2014-06-04 18:25] [PACMAN] downgraded libxcursor (1.1.14-2 -> 1.1.14-1)
    Last edited by psycho (2014-06-04 15:58:49)

  • Python music players keep seg faulting

    Recently, exaile refuses to play music files.  When I launch it from a shell:
    $ exaile
    INFO : Loading Exaile 0.3.2.0...
    INFO : Loading settings...
    ** Message: pygobject_register_sinkfunc is deprecated (GstObject)
    INFO : Loading plugins...
    INFO : Loading collection...
    INFO : Loading devices...
    INFO : Loading interface...
    INFO : Loading main window...
    INFO : Connecting main window events...
    INFO : Loading panels...
    INFO : Connecting panel events...
    INFO : Done loading main window...
    INFO : Playing file:///media/data/DM/file.flac
    Segmentation fault
    Also tried rhythmbox with the same results:
    $ rhythmbox
    (rhythmbox:5663): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    ** Message: pygobject_register_sinkfunc is deprecated (GstObject)
    Segmentation fault
    Finally, banshee crashes as well:
    $ banshee-1
    [Info 20:04:45.641] Running Banshee 1.6.1: [source-tarball (linux-gnu, x86_64) @ 2010-06-13 18:19:30 UTC]
    [Warn 20:04:46.239] Cannot connect to NetworkManager or Wicd - An available, working network connection will be assumed
    [Info 20:04:46.274] All services are started 0.502216
    [Warn 20:04:46.811] Forcefully breaking out of RCS loop b/c change in total_width less than 1.0
    [Info 20:04:46.854] nereid Client Started
    System.ApplicationException: Could not find org.freedesktop.Avahi
    at Mono.Zeroconf.Providers.AvahiDBus.DBusManager.Initialize () [0x00000] in <filename unknown>:0
    at Mono.Zeroconf.Providers.AvahiDBus.ZeroconfProvider.Initialize () [0x00000] in <filename unknown>:0
    at Mono.Zeroconf.Providers.ProviderFactory.GetProviders () [0x00000] in <filename unknown>:0
    System.DllNotFoundException: libnss_mdns-0.2.so
    at (wrapper managed-to-native) Mono.Zeroconf.Providers.Bonjour.Native:DNSServiceCreateConnection (Mono.Zeroconf.Providers.Bonjour.ServiceRef&)
    at Mono.Zeroconf.Providers.Bonjour.Zeroconf.Initialize () [0x00000] in <filename unknown>:0
    at Mono.Zeroconf.Providers.Bonjour.ZeroconfProvider.Initialize () [0x00000] in <filename unknown>:0
    at Mono.Zeroconf.Providers.ProviderFactory.GetProviders () [0x00000] in <filename unknown>:0
    [Warn 20:04:47.082] Failed to start DAAP client - System.Exception: No Zeroconf providers could be found or initialized. Necessary daemon may not be running. (in `Mono.Zeroconf')
    at Mono.Zeroconf.Providers.ProviderFactory.GetProviders () [0x00000] in <filename unknown>:0
    at Mono.Zeroconf.Providers.ProviderFactory.get_DefaultProvider () [0x00000] in <filename unknown>:0
    at Mono.Zeroconf.Providers.ProviderFactory.get_SelectedProvider () [0x00000] in <filename unknown>:0
    at Mono.Zeroconf.ServiceBrowser..ctor () [0x00000] in <filename unknown>:0
    at Daap.ServiceLocator.Start () [0x00000] in <filename unknown>:0
    at Banshee.Daap.DaapService.ThreadedInitialize () [0x00000] in <filename unknown>:0
    [Warn 20:04:58.326] Forcefully breaking out of RCS loop b/c change in total_width less than 1.0
    [Warn 20:04:59.561] Forcefully breaking out of RCS loop b/c change in total_width less than 1.0
    Stacktrace:
    Native stacktrace:
    Segmentation fault
    I know there is a great python rebuild underway, but I do not have any testing repo enabled.  Running x86_64 with Gnome (seems like this behavior started happening after 2.32 got pulled down).
    I can use vlc or xmms to play all sorts of files (mp3, flac, etc.) with no problems so it's definitely pointing to a python problem I think...
    Advice is welcomed.
    Last edited by graysky (2010-10-08 00:05:34)

    I thought this might be related to alsa so I removed it and installed oss but I get the same crap.
    Only relavant debug info is a one-liner from dmesg:
    source:src[3549]: segfault at ffffffffffffffff ip ffffffffffffffff sp 00007f38113d8828 error 14

  • KODI and VLC won't run and keeps Segfaulting

    Hi,
    I'm not sure if this belongs here but as it's to do with multimedia hopefully it does :-)
    My issue is that I am unable to run both Kodi and VLC?? They worked fine before - a few months back, but now after a few updates they don't run any more??
    Running Kodi directly from terminal on XFCE4 I get this:
    $ kodi
    /usr/bin/kodi: line 141: 7267 Segmentation fault (core dumped) python2 ${datarootdir}/${bin_name}/FEH.py $SAVED_ARGS
    while VLC gives me this:
    $ vlc
    VLC media player 2.2.1 Terry Pratchett (Weatherwax) (revision 2.2.1-0-ga425c42)
    Segmentation fault (core dumped)
    My system is totally up to date as of today: 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 x86_64 GNU/Linux
    The H/W specs are 8GB RAM, Core i5 cpu and Nvidia graphics.
    I attempted to use GDB to run Kodi but it just gives me this:
    "/usr/bin/kodi": not in executable format: File format not recognized
    (gdb) run
    Starting program:
    No executable file specified.
    Use the "file" or "exec-file" command.
    VLC seems to give a bit more information:
    Reading symbols from vlc...(no debugging symbols found)...done.
    (gdb) run
    Starting program: /usr/bin/vlc
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/usr/lib/libthread_db.so.1".
    VLC media player 2.2.1 Terry Pratchett (Weatherwax) (revision 2.2.1-0-ga425c42)
    Program received signal SIGSEGV, Segmentation fault.
    0x00007ffff79af080 in __lll_unlock_elision () from /usr/lib/libpthread.so.0
    I am wondering if anyone can help me, or should I be filing a bug report?
    Thanks.

    Ok many thanks done;
    https://wiki.archlinux.org/index.php/Microcode
    Update is complete and now KODI managed to run but still segfaulted??
    ############## Kodi CRASH LOG ###############
    ################ SYSTEM INFO ################
    Date: Tue May 26 18:26:31 BST 2015
    Kodi Options:
    Arch: x86_64
    Kernel: Linux 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015
    Release: Arch Linux
    ############## END SYSTEM INFO ##############
    ############### STACK TRACE #################
    ############# END STACK TRACE ###############
    ################# LOG FILE ##################
    18:25:36 T:140529503250432 NOTICE: special://profile/ is mapped to: special://masterprofile/
    18:25:36 T:140529503250432 NOTICE: -----------------------------------------------------------------------
    18:25:36 T:140529503250432 NOTICE: Starting Kodi (14.2 Git:Unknown). Platform: Linux x86 64-bit
    18:25:36 T:140529503250432 NOTICE: Using Release Kodi x64 build
    18:25:36 T:140529503250432 NOTICE: Kodi compiled Apr 13 2015 by GCC 4.9.2 for Linux x86 64-bit version 3.18.5 (201221)
    18:25:36 T:140529503250432 NOTICE: Running on Arch Linux rolling, kernel: Linux x86 64-bit version 4.0.4-2-ARCH
    18:25:36 T:140529503250432 NOTICE: FFmpeg statically linked, version: 2.4.6-xbmc-2.4.6-Helix
    18:25:36 T:140529503250432 NOTICE: Host CPU: Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz, 4 cores available
    18:25:36 T:140529503250432 NOTICE: special://xbmc/ is mapped to: /usr/share/kodi
    18:25:36 T:140529503250432 NOTICE: special://xbmcbin/ is mapped to: /usr/lib/kodi
    18:25:36 T:140529503250432 NOTICE: special://masterprofile/ is mapped to: /home/htpc/.kodi/userdata
    18:25:36 T:140529503250432 NOTICE: special://home/ is mapped to: /home/htpc/.kodi
    18:25:36 T:140529503250432 NOTICE: special://temp/ is mapped to: /home/htpc/.kodi/temp
    18:25:36 T:140529503250432 NOTICE: The executable running is: /usr/lib/kodi/kodi.bin
    18:25:36 T:140529503250432 NOTICE: Local hostname: HTPC1.optiplex-networks.com
    18:25:36 T:140529503250432 NOTICE: Log File is located: /home/htpc/.kodi/temp/kodi.log
    18:25:36 T:140529503250432 NOTICE: -----------------------------------------------------------------------
    18:25:36 T:140529503250432 NOTICE: load settings...
    18:25:36 T:140529503250432 NOTICE: Found 1 Lists of Devices
    18:25:36 T:140529503250432 NOTICE: Enumerated PULSE devices:
    18:25:36 T:140529503250432 NOTICE: Device 1
    18:25:36 T:140529503250432 NOTICE: m_deviceName : Default
    18:25:36 T:140529503250432 NOTICE: m_displayName : Default
    18:25:36 T:140529503250432 NOTICE: m_displayNameExtra: Default Output Device (PULSEAUDIO)
    18:25:36 T:140529503250432 NOTICE: m_deviceType : AE_DEVTYPE_PCM
    18:25:36 T:140529503250432 NOTICE: m_channels : FL,FR
    18:25:36 T:140529503250432 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
    18:25:36 T:140529503250432 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
    18:25:36 T:140529503250432 NOTICE: Device 2
    18:25:36 T:140529503250432 NOTICE: m_deviceName : alsa_output.pci-0000_01_00.1.hdmi-stereo-extra2
    18:25:36 T:140529503250432 NOTICE: m_displayName : HDA NVidia Digital Stereo (HDMI 3)
    18:25:36 T:140529503250432 NOTICE: m_displayNameExtra: HDMI / DisplayPort 3 (PULSEAUDIO)
    18:25:36 T:140529503250432 NOTICE: m_deviceType : AE_DEVTYPE_PCM
    18:25:36 T:140529503250432 NOTICE: m_channels : FL,FR
    18:25:36 T:140529503250432 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
    18:25:36 T:140529503250432 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
    18:25:36 T:140529503250432 NOTICE: Device 3
    18:25:36 T:140529503250432 NOTICE: m_deviceName : alsa_output.pci-0000_00_1b.0.analog-stereo
    18:25:36 T:140529503250432 NOTICE: m_displayName : Built-in Audio Analog Stereo
    18:25:36 T:140529503250432 NOTICE: m_displayNameExtra: Line Out (PULSEAUDIO)
    18:25:36 T:140529503250432 NOTICE: m_deviceType : AE_DEVTYPE_PCM
    18:25:36 T:140529503250432 NOTICE: m_channels : FL,FR
    18:25:36 T:140529503250432 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
    18:25:36 T:140529503250432 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
    18:25:36 T:140529503250432 NOTICE: Device 4
    18:25:36 T:140529503250432 NOTICE: m_deviceName : alsa_output.hw_1_7
    18:25:36 T:140529503250432 NOTICE: m_displayName : HDA NVidia
    18:25:36 T:140529503250432 NOTICE: m_displayNameExtra: HDA NVidia (PULSEAUDIO)
    18:25:36 T:140529503250432 NOTICE: m_deviceType : AE_DEVTYPE_PCM
    18:25:36 T:140529503250432 NOTICE: m_channels : FL,FR
    18:25:36 T:140529503250432 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
    18:25:36 T:140529503250432 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
    18:25:36 T:140529503250432 ERROR: CSettingsManager: unable to load settings from special://masterprofile/guisettings.xml, creating new default settings
    18:25:36 T:140529503250432 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
    18:25:36 T:140529503250432 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
    18:25:36 T:140529503250432 NOTICE: Default DVD Player: dvdplayer
    18:25:36 T:140529503250432 NOTICE: Default Video Player: dvdplayer
    18:25:36 T:140529503250432 NOTICE: Default Audio Player: paplayer
    18:25:36 T:140529503250432 NOTICE: Disabled debug logging due to GUI setting. Level 0.
    18:25:36 T:140529503250432 NOTICE: Log level changed to "LOG_LEVEL_NORMAL"
    18:25:36 T:140529503250432 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
    18:25:36 T:140529503250432 NOTICE: Loaded playercorefactory configuration
    18:25:36 T:140529503250432 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
    18:25:36 T:140529503250432 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
    17:25:36 T:140529017550592 NOTICE: Thread ActiveAE start, auto delete: false
    17:25:36 T:140529083053824 NOTICE: Thread AESink start, auto delete: false
    17:25:36 T:140529083053824 NOTICE: PulseAudio: Opened device Default in pcm mode with Buffersize 150 ms
    17:25:36 T:140529503250432 NOTICE: ADDONS: Using repository repository.xbmc.org
    17:25:36 T:140529057007360 NOTICE: Thread PeripBusCEC start, auto delete: false
    17:25:36 T:140529503250432 NOTICE: Register - new imon device registered on usb->/sys/devices/pci0000:00/0000:00:14.0/usb3/3-13/3-13.3: iMON HID device (15C2:0036)
    17:25:36 T:140529048614656 NOTICE: Thread PeripBusUSBUdev start, auto delete: false
    17:25:36 T:140529503250432 NOTICE: Setup SDL
    17:25:36 T:140529503250432 NOTICE: Checking resolution 16
    17:25:36 T:140529503250432 NOTICE: Using visual 0x28
    17:25:36 T:140529503250432 NOTICE: GL_VENDOR = NVIDIA Corporation
    17:25:36 T:140529503250432 NOTICE: GL_RENDERER = GeForce GTX 750 Ti/PCIe/SSE2
    17:25:36 T:140529503250432 NOTICE: GL_VERSION = 4.5.0 NVIDIA 352.09
    17:25:36 T:140529503250432 NOTICE: GL_SHADING_LANGUAGE_VERSION = 4.50 NVIDIA
    17:25:36 T:140529503250432 NOTICE: GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX = 2097152
    17:25:36 T:140529503250432 NOTICE: GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX = 2097152
    17:25:36 T:140529503250432 NOTICE: GL_EXTENSIONS = GL_AMD_multi_draw_indirect GL_AMD_seamless_cubemap_per_texture GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_bindless_texture GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_indirect GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_ES3_1_compatibility GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_geometry_shader4 GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_imaging GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_NV_internalformat_sample_query GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counters GL_ARB_shader_bit_encoding GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_query_buffer_object GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shading_language_100 GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_shadow GL_ARB_sparse_buffer GL_ARB_sparse_texture GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_cube_map_array GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_bindable_uniform GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_direct_state_access GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXTX_framebuffer_mixed_formats GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_shader_objects GL_EXT_separate_specular_color GL_EXT_shader_image_load_formatted GL_EXT_shader_image_load_store GL_EXT_shader_integer_mix GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_latc GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_shared_exponent GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_storage GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback2 GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_EXT_x11_sync_object GL_EXT_import_sync_object GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KHR_context_flush_control GL_KHR_debug GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KTX_buffer_region GL_NV_bindless_multi_draw_indirect GL_NV_bindless_multi_draw_indirect_count GL_NV_bindless_texture GL_NV_blend_equation_advanced GL_NV_blend_equation_advanced_coherent GL_NV_blend_square GL_NV_command_list GL_NV_compute_program5 GL_NV_conditional_render GL_NV_copy_depth_to_color GL_NV_copy_image GL_NV_depth_buffer_float GL_NV_depth_clamp GL_NV_draw_texture GL_NV_ES1_1_compatibility GL_NV_ES3_1_compatibility GL_NV_explicit_multisample GL_NV_fence GL_NV_float_buffer GL_NV_fog_distance GL_NV_fragment_program GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_framebuffer_multisample_coverage GL_NV_geometry_shader4 GL_NV_gpu_program4 GL_NV_gpu_program4_1 GL_NV_gpu_program5 GL_NV_gpu_program5_mem_extended GL_NV_gpu_program_fp64 GL_NV_gpu_shader5 GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_coverage GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_parameter_buffer_object GL_NV_parameter_buffer_object2 GL_NV_path_rendering GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_shader_atomic_counters GL_NV_shader_atomic_float GL_NV_shader_atomic_int64 GL_NV_shader_buffer_load GL_NV_shader_storage_buffer_object GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_multisample GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_transform_feedback GL_NV_transform_feedback2 GL_NV_uniform_buffer_unified_memory GL_NV_vdpau_interop GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_attrib_integer_64bit GL_NV_vertex_buffer_unified_memory GL_NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_NVX_conditional_render GL_NVX_gpu_memory_info GL_NVX_nvenc_interop GL_NV_shader_thread_group GL_NV_shader_thread_shuffle GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum
    17:25:36 T:140529503250432 NOTICE: Running database version Addons16
    17:25:36 T:140529503250432 NOTICE: start dvd mediatype detection
    17:25:36 T:140529027544832 NOTICE: Thread DetectDVDMedia start, auto delete: false
    17:25:37 T:140529503250432 WARNING: JSONRPC: Could not parse type "PVR.Details.Channel"
    17:25:37 T:140529503250432 WARNING: JSONRPC: Could not parse type "PVR.Details.ChannelGroup.Extended"
    17:25:37 T:140529503250432 WARNING: JSONRPC: Could not parse type "GUI.Property.Value"
    17:25:37 T:140529503250432 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
    17:25:37 T:140528995170048 NOTICE: Thread LanguageInvoker start, auto delete: false
    17:25:37 T:140529503250432 NOTICE: initialize done
    17:25:37 T:140529503250432 NOTICE: Running the application...
    17:25:37 T:140528995170048 NOTICE: -->Python Interpreter Initialized<--
    17:25:37 T:140528689755904 NOTICE: Thread JobWorker start, auto delete: true
    17:25:37 T:140529503250432 NOTICE: starting zeroconf publishing
    17:25:37 T:140529503250432 NOTICE: ES: Starting event server
    17:25:37 T:140528672970496 NOTICE: Thread JobWorker start, auto delete: true
    17:25:37 T:140528664577792 NOTICE: Thread EventServer start, auto delete: false
    17:25:37 T:140528664577792 NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
    17:25:37 T:140528664577792 NOTICE: UDP: Listening on port 9777
    17:25:37 T:140528656185088 NOTICE: Thread TCPServer start, auto delete: false
    17:25:37 T:140528175806208 NOTICE: Thread JobWorker start, auto delete: true
    17:25:37 T:140529027544832 NOTICE: Thread RSSReader start, auto delete: false
    17:25:47 T:140528175806208 ERROR: CCurlFile::FillBuffer - Failed: Timeout was reached(28)
    17:25:47 T:140528175806208 ERROR: CCurlFile::CReadState::Connect, didn't get any data from stream.
    17:25:47 T:140528175806208 ERROR: Open - failed to open source <http://mirrors.kodi.tv/addons/gotham/addons.xml.md5>
    17:25:47 T:140528175806208 ERROR: Failed to fetch checksum for directory listing http://mirrors.kodi.tv/addons/gotham/addons.xml for repository repository.xbmc.org.
    17:25:53 T:140528995170048 NOTICE: Thread BackgroundLoader start, auto delete: false
    17:26:16 T:140528672970496 NOTICE: Previous line repeats 2 times.
    17:26:16 T:140528672970496 NOTICE: PVRManager - starting up
    17:26:16 T:140528995170048 NOTICE: Thread PVRManager start, auto delete: false
    17:26:16 T:140528167413504 NOTICE: Thread PVRClient start, auto delete: false
    17:26:23 T:140528156923648 NOTICE: Thread BackgroundLoader start, auto delete: false
    17:26:28 T:140528175806208 NOTICE: PVRManager - stopping
    17:26:28 T:140528175806208 NOTICE: PVRManager - starting up
    17:26:28 T:140528167413504 NOTICE: Thread PVRManager start, auto delete: false
    17:26:28 T:140528995170048 NOTICE: Thread PVRClient start, auto delete: false
    17:26:28 T:140528156923648 NOTICE: Thread BackgroundLoader start, auto delete: false
    17:26:28 T:140528995170048 NOTICE: AddOnLog: Tvheadend HTSP Client: CHTSPConnection - SendGreeting - connection opened to 'HTS Tvheadend 4.1.12~g0e5ec2a', protocol v20
    17:26:30 T:140528122193664 NOTICE: Thread PVRGUIInfo start, auto delete: false
    17:26:30 T:140527840261888 NOTICE: Thread EPGUpdater start, auto delete: false
    17:26:30 T:140528167413504 NOTICE: Start - EPG thread started
    ############### END LOG FILE ################
    ############ END Kodi CRASH LOG #############

  • Cups/hplip Segfaulting

    HI boys'n girlz,
    My problem in conclusion: i can't set any printer-options from any of my hp printers!
    Description:
    1.) Cups is starting up normally and i can go to cups interface. When I go to printers tab and try to click "modify printer options" nothing happens, i can't just go to this page!
    2.) Trying hp-toolbox for changing settings... i can load hp-toolbox normally and click on all of my printer tabs, except of "printer-settings" tab... hp-toolbox is just segfaulting
    3.) I can't look at printer options from any location (for example from okular)
    First I thought it was a problem of latest hplip, i compiled an older version and tested it, but no difference.... removed cups completly and installed again, no change, too.
    Maybe its some permission problem, etc? My user is in group "lp" and I tried set up an extra group for print-admins, which made no difference!
    Someone's an idea? I don't really know where I could look further.
    Greetz solid

    Re-compiled hplip from ABS and still no joy.
    Installed dbus-python; still no joy.
    Ran 'qt3config' to populate 'qt_plugins_3.3rc'; didn't populate it
    and still no joy.
    Here's the output I get:
    error: Unable to load dbus - Automatic status updates in HPLIP Device Manager will be disabled.
    QSettings: failed to open file '/home/deej/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    QSettings: failed to open file '/home/deej/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    QSettings: failed to open file '/home/deej/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    error: Unable to communicate with device (code=12): hp:/usb/DeskJet_845C?serial=TH1861B8V4SX
    warning: Device not found
    Segmentation fault
    Deej

  • [SOLVED] crond raises segfault after system Reload configuration

    Since yesterday cronie causes the following error messages:
    -- Logs begin at Di 2014-07-15 10:38:36 CEST, end at Di 2015-02-10 16:25:01 CET. --
    Feb 09 15:51:01 sputnik3arch crond[19981]: pam_unix(crond:session): session opened for user cutuchiqueno by (uid=0)
    Feb 09 15:51:01 sputnik3arch CROND[19982]: (cutuchiqueno) CMD (/bin/vdirsyncer2 sync)
    Feb 09 15:51:39 sputnik3arch crond[288]: sendmail: Account default nicht in /home/cutuchiqueno/.msmtprc gefunden
    Feb 09 15:51:39 sputnik3arch CROND[19981]: (cutuchiqueno) MAIL (mailed 3558 bytes of output but got status 0x004e
    Feb 09 15:51:39 sputnik3arch CROND[19981]: pam_unix(crond:session): session closed for user cutuchiqueno
    Feb 09 15:52:09 sputnik3arch logger[20594]: ACPI group/action undefined: processor / LNXCPU:00
    Feb 09 15:52:20 sputnik3arch dbus[278]: [system] Reloaded configuration
    Feb 09 15:52:20 sputnik3arch dbus[278]: [system] Reloaded configuration
    Feb 09 15:52:20 sputnik3arch dbus[278]: [system] Reloaded configuration
    Feb 09 15:52:20 sputnik3arch sudo[18884]: pam_unix(sudo:session): session closed for user root
    Feb 09 15:57:01 sputnik3arch crond[23439]: PAM unable to dlopen(/usr/lib/security/pam_unix.so): /usr/lib/libpthread.so.0: symbol __getrlimit, version GLIBC_PRIVATE not defined in file libc.so.6 with link time reference
    Feb 09 15:57:01 sputnik3arch crond[23439]: PAM adding faulty module: /usr/lib/security/pam_unix.so
    Feb 09 15:57:01 sputnik3arch kernel: crond[23439]: segfault at 59d6 ip 00000000000059d6 sp 00007fff0abfa968 error 14 in crond[400000+d000]
    Feb 09 15:57:01 sputnik3arch systemd-coredump[23440]: Process 23439 (crond) of user 0 dumped core.
    Feb 09 15:58:15 sputnik3arch sudo[23517]: cutuchiqueno : TTY=pts/6 ; PWD=/etc ; USER=root ; COMMAND=/usr/bin/vimdiff locale.gen locale.gen.pacnew
    Feb 09 15:58:15 sputnik3arch sudo[23517]: pam_unix(sudo:session): session opened for user root by (uid=0)
    Feb 09 15:59:51 sputnik3arch sudo[23517]: pam_unix(sudo:session): session closed for user root
    I posted exactly the fragment of the journal that shows the moment where cronie stoped to work normal. At the moment every cron job is causing the problem not a particular one and before everything was fine. The only thing that gives a hint that something might have changed is the *Reloaded configuration* message. I looked at the pacman log and recognized that I did an update of the following packages:
    [2015-02-09 15:52] [ALPM] upgraded mpd (0.19.8-1 -> 0.19.9-1)
    [2015-02-09 15:52] [ALPM] upgraded net-snmp (5.7.2.1-3 -> 5.7.3-1)
    [2015-02-09 15:52] [ALPM] upgraded nodejs (0.10.36-2 -> 0.10.36-3)
    [2015-02-09 15:52] [ALPM] upgraded patch (2.7.3-1 -> 2.7.4-1)
    [2015-02-09 15:52] [ALPM] upgraded python-lxml (3.4.1-1 -> 3.4.2-1)
    [2015-02-09 15:52] [ALPM] upgraded python2-ecdsa (0.11-2 -> 0.13-1)
    [2015-02-09 15:52] [ALPM] upgraded python2-keyring (4.1.1-1 -> 5.0-1)
    [2015-02-09 15:52] [ALPM] upgraded udisks2 (2.1.3-1 -> 2.1.4-1)
    [2015-02-09 15:52] [ALPM] upgraded youtube-dl (2015.02.03-1 -> 2015.02.06-1)
    But I can not sea how these should be related.
    Basically I don't even understand what's the problem here to continue to search for solutions.
    Last edited by cutuchiqueno (2015-02-11 09:43:03)

    jasonwryan wrote:You have to restart cronie after every glibc update, AFAIAA...
    For me this means restarting a lot of machines when updating; glibc is the only package where updates are so invasive.
    Is there some reading material availble somewhere on why this is and if it could possibly be avoided?

Maybe you are looking for