This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Too many CFI instuctions


Hi,  I am trying to capture some stack data of python runtime and draw
the function graph somewhere.
systemtap script:
global s;

probe process("../python").function("*") {
    s[sprint_ubacktrace()] <<< 1;
}

probe end {
    foreach ([stack] in s+) {
        printf("%s\\n\\n", stack);
    }
}

After a signal python command "1+1",   The python runtime crashed with
segment fault, The message in systemtap is "Too many CFI instuctions,
Too many pending (warning) messages".   What's CFI instuction ?  Why
segment fault?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]