Page MenuHomeFreeBSD

kdump: nicer printing of kill(2) PID argument
ClosedPublic

Authored by kevans on May 24 2025, 4:14 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Oct 5, 11:19 AM
Unknown Object (File)
Sun, Sep 28, 4:44 AM
Unknown Object (File)
Thu, Sep 25, 7:54 PM
Unknown Object (File)
Wed, Sep 24, 3:38 AM
Unknown Object (File)
Sun, Sep 21, 4:25 AM
Unknown Object (File)
Sat, Sep 20, 9:01 AM
Unknown Object (File)
Thu, Sep 18, 7:41 PM
Unknown Object (File)
Thu, Sep 18, 7:44 AM
Subscribers

Details

Summary

Similar to wait*(), kill(2) operates on a pid that currently gets output
as hex. Output it in decimal to make it a little easier to eyeball the
pid we're signalling.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

usr.bin/kdump/kdump.c
1031–1032

What exactly does this assignment do? Do we handle negative PID arguments correctly here?

usr.bin/kdump/kdump.c
1031–1032

Forces the sign extension that I tried to manually hand-roll in wait4 so that it gets interpreted correctly.

This revision is now accepted and ready to land.May 24 2025, 1:48 PM
This revision was automatically updated to reflect the committed changes.