summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBQueueItem.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Don't #include "lldb-python.h" from anywhere.Zachary Turner2015-05-291-1/+0
| | | | | | | | | | | | | Since interaction with the python interpreter is moving towards being more isolated, we won't be able to include this header from normal files anymore, all includes of it should be localized to the python library which will live under source/bindings/API/Python after a future patch. None of the files that were including this header actually depended on it anyway, so it was just a dead include in every single instance. llvm-svn: 238581
* sweep up -Wformat warnings from gccSaleem Abdulrasool2014-04-041-5/+15
| | | | | | | This is a purely mechanical change explicitly casting any parameters for printf style conversion. This cleans up the warnings emitted by gcc 4.8 on Linux. llvm-svn: 205607
* Add API logging to the SBQueue/SBQueueItem/SBThread calls.Jason Molenda2014-03-081-1/+30
| | | | llvm-svn: 203330
* When a client asks for a queue pending item's extended backtrace,Jason Molenda2014-03-061-5/+14
| | | | | | | | | | | hold a strong pointer to that extended backtrace thread in the Process just like we do for asking a thread's extended backtrace. Also, give extended backtrace threads an invalid ThreadIndexID number. We'll still give them valid thread_id's. Clients who want to know the original thread's IndexID can call GetExtendedBacktraceOriginatingIndexID(). <rdar://problem/16126034> llvm-svn: 203088
* Change the Mac OS X SystemRuntime plugin from using the placeholderJason Molenda2014-02-051-0/+1
| | | | | | | | | | | | | | libldi library to collect extended backtrace information; switch to the libBacktraceRecording library and its APIs. Complete the work of adding QueueItems to Queues and allow for the QueueItems to be interrogated about their extended backtraces in turn. There's still cleanup and documentation to do on this code but the code is functional and I it's a good time to get the work-in-progress checked in. <rdar://problem/15314027> llvm-svn: 200822
* Add new Queue, QueueItem, Queuelist, SBQueue, SBQueueItem classes to representJason Molenda2013-12-131-0/+119
libdispatch aka Grand Central Dispatch (GCD) queues. Still fleshing out the documentation and testing of these but the overall API is settling down so it's a good time to check it in. <rdar://problem/15600370> llvm-svn: 197190
OpenPOWER on IntegriCloud