Implement the support for the vKill packet. This is the modern packet
used by the GDB Remote Serial Protocol to kill one of the debugged
processes. Unlike the k packet, it has well-defined semantics.
The vKill packet takes the PID of the process to kill, and always
replies with an OK reply (rather than the exit status, as LLGS does
for k packets at the moment). Additionally, unlike the k packet
it does not cause the connection to be terminated once the last process
is killed — the client needs to close it explicitly.
Sponsored by: The FreeBSD Foundation