From: Josh Steadmon Date: Tue, 9 Jul 2019 23:09:01 +0000 (-0700) Subject: trace2: correct trace2 field name documentation X-Git-Tag: v2.23.0-rc0~26^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=24df0d49c42d17c93aade8b6f3b9474d2c902385;p=thirdparty%2Fgit.git trace2: correct trace2 field name documentation Correct the api-trace2 documentation, which lists "signal" as an expected field for the signal event type, but which actually outputs "signo" as the field name. Signed-off-by: Josh Steadmon Signed-off-by: Junio C Hamano --- diff --git a/Documentation/technical/api-trace2.txt b/Documentation/technical/api-trace2.txt index 23c3cc7a37..fd1e628944 100644 --- a/Documentation/technical/api-trace2.txt +++ b/Documentation/technical/api-trace2.txt @@ -668,7 +668,7 @@ completed.) "event":"signal", ... "t_abs":0.001227, # elapsed time in seconds - "signal":13 # SIGTERM, SIGINT, etc. + "signo":13 # SIGTERM, SIGINT, etc. } ------------