October 28, 2019
Hello!

I can list available probes using gdb:
```
(gdb) info probes
Type Provider Name      Where              Semaphore Object 

stap myapp    func_call 0x00000000000200b9           /path/to/file
```

How can I do this using lldb? Of course I can check it using readelf but its output is less human readable than a debugger output.

Thanks in advance