Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Changes
Page history
Update debugging
authored
Apr 20, 2022
by
umaumax
Show whitespace changes
Inline
Side-by-side
debugging.md
View page @
d24a67a8
...
...
@@ -173,6 +173,9 @@ lsof /lib/x86_64-linux-gnu/libnss_files-2.23.so
ps
$(
grep
/lib/x86_64-linux-gnu/libnss_files-2.23.so /proc/
*
/maps |
cut
-d
/
-f3
|
sort
-u
)
```
### 遅延読み込みのライブラリが今現在、読み込まれているかどうかを知りたい
`pmap`
コマンドや
`/proc/$PID/maps`
を利用すれば、どのライブラリがどこのメモリマップにあるかわかる
## 各スレッドがどのようなスレッドかどうかを知りたい
### あるプロセスの各スレッドで実行した動的リンクした関数の一覧を取得して,図示したい
...
...
...
...