This covers the immediate need of truss(1), allowing to postpone pdkinfo(2).
Details
Details
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
| lib/libsys/ptrace.2 | ||
|---|---|---|
| 1111 ↗ | (On Diff #184762) | Or "defines how system call numbers and arguments are interpreted." Or "the ABI selects the system call table used by the process." |
| 1116 ↗ | (On Diff #184762) | IMO this makes it slightly more obvious that the nul-terminator is included. |
| sys/compat/freebsd32/freebsd32_misc.c | ||
| 1257 | udata <= strlen(...) is a signed/unsigned comparison, no? Don't we thus need an explicit check for udata < 0? | |
| sys/kern/sys_process.c | ||
| 889 | Same comment about negative data. | |
| 2026 | Shouldn't truncation result in an error? | |
Comment Actions
Fix signed/unsigned comparison.
Report error on too long ABI name.
Man page improvements.