aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Commands/Inputs/stop_hook.py
blob: af437735967dde8836c58b967591b2a720922156 (plain)
1
2
3
4
5
6
7
8
9
10
11
import lldb


class stop_handler:
    def __init__(self, target, extra_args, dict):
        self.extra_args = extra_args
        self.target = target

    def handle_stop(self, exe_ctx, stream):
        stream.Print("I did indeed run\n")
        return True