dbus-python 在 thread 中運行時會隨機出錯

來源:互聯網
上載者:User

轉載時請註明出處和作者連絡方式:http://blog.csdn.net/mimepp

作者連絡方式:YU TAO <yut616 at sohu dot com> 

關鍵字: linux,dbus-python, python, dbus, thread, safety

這裡記錄一下 dbus-python 在 thread 運行時,會有 crash 的情況。

測試代碼:

import dbusimport tracebackimport threadingdef test_function(index):        bus = dbus.SessionBus()        try:                bus_obj = bus.get_object("org.freedesktop.DBus", "/org/freedesktop/DBus")                print "index: %d" % index        except dbus.DBusException:                print "dbus.DBusException"                traceback.print_exc()        return Falseif __name__ == '__main__':        for i in range(1,10000):                threading.Thread( target = test_function, args = (i, ) ).start()

這裡測試代碼只用到了 get_object 方法,就會引起問題了。

PC 上是很隨機的出現 bug,crash 結果如下:

index: 8898index: 8899index: 8900index: 8901index: 8902 index: 8878index: 8904Segmentation fault

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.