diff --git a/pwndbg/gdblib/regs.py b/pwndbg/gdblib/regs.py index 0ff1ada20..2479c965b 100644 --- a/pwndbg/gdblib/regs.py +++ b/pwndbg/gdblib/regs.py @@ -169,7 +169,8 @@ class module(ModuleType): @pwndbg.lib.cache.cache_until("stop") def _fs_gs_helper(self, regname: str, which): - """Supports fetching based on segmented addressing, a la fs:[0x30].""" + """Supports fetching based on segmented addressing, a la fs:[0x30]. + Requires ptrace'ing the child directory if i386.""" if pwndbg.gdblib.arch.current == "x86-64": return gdb_get_register(regname)