I am trying to break all the functions of pthread, but it looks like gdb does not support wildcard here:
(gdb) b pthread_* Function "pthread_*" not defined.
Any ideas?
Use rbreak ^pthread_
rbreak ^pthread_
From GDB: setting breakpoints :
rbreak regexSet breakpoints for all functions matching the regex regular expression. , , grep. , , , , , foo * , fo, os. . * , , , foo, ^ foo.
rbreak regex
Set breakpoints for all functions matching the regex regular expression. , , grep. , , , , , foo * , fo, os. . * , , , foo, ^ foo.
Set breakpoints for all functions matching the regex regular expression.
, , grep. , , , , , foo * , fo, os. . * , , , foo, ^ foo.
Source: https://habr.com/ru/post/1547439/More articles:GpuMat custom kernel with float - c ++Does MKAnnotationView buffer its input queue? - iosIs there a type in TypeScript for anything but functions? - typescriptWriting a synchronous test suite for an asynchronous tornado web socket server - pythonThe map annotation displays all the same images / contacts for all points - iosCBP peripheral connection continues to disconnect after DiscoverServices - iosCustomize contact card color dynamically for iOS - iosAdd resume / additional text to alertDialog for individual selection items - androidCollection of nested MVC models - c #Finding the difference between consecutive numbers in a list (Python) - pythonAll Articles