[Libreoffice-commits] core.git: solenv/gdb

Pranav Kant pranavk at collabora.co.uk
Fri Jul 28 21:18:05 UTC 2017


 solenv/gdb/libreoffice/vcl.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 64eac4e0f8f25675efe72c95df0cb17789ba3559
Author: Pranav Kant <pranavk at collabora.co.uk>
Date:   Sat Jul 29 02:40:21 2017 +0530

    Fix no longer valid comment
    
    This was changed in d72aad218c9737fb19d1a835b03c13b7107a96c0
    
    Change-Id: Ie93f603c82669ca612fbf9635a62c50e63702a85

diff --git a/solenv/gdb/libreoffice/vcl.py b/solenv/gdb/libreoffice/vcl.py
index 07f95a697689..6a99c9f21f7c 100644
--- a/solenv/gdb/libreoffice/vcl.py
+++ b/solenv/gdb/libreoffice/vcl.py
@@ -15,12 +15,12 @@ class ImplSchedulerDataPrinter(object):
     '''Prints the ImplSchedulerData linked list.
 
        This can be used to dump the current state of the scheduler via:
-          p *ImplGetSVData()->mpFirstSchedulerData
+          p *ImplGetSVData()->maSchedCtx.mpFirstSchedulerData
 
        This doesn't include currently invoked tasks AKA the stack.
 
        To dump the scheduler stack of invoked tasks use:
-          p *ImplGetSVData()->mpSchedulerStack
+          p *ImplGetSVData()->maSchedCtx.mpSchedulerStack
     '''
 
     def __init__(self, typename, value):


More information about the Libreoffice-commits mailing list