mirror of
https://github.com/gatieme/LDD-LinuxDeviceDrivers.git
synced 2026-08-23 16:09:43 +08:00
10 lines
237 B
Plaintext
10 lines
237 B
Plaintext
probe process("/lib64/libc.so.6").function("malloc") {
|
|
if (target()== pid()) {
|
|
print_ubacktrace();
|
|
exit();
|
|
}
|
|
}
|
|
probe begin {
|
|
println("~");
|
|
}
|