diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-08-10 12:11:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2023-08-10 12:11:55 +0200 |
commit | db9ac8016322e3227b0466f35ca0103e0cc8d829 (patch) | |
tree | 2c69d6c25007c0dc65bdd4479e948776703c724c | |
parent | coredump: add four assert()s (diff) | |
download | systemd-db9ac8016322e3227b0466f35ca0103e0cc8d829.tar.xz systemd-db9ac8016322e3227b0466f35ca0103e0cc8d829.zip |
coredump: rename gather_pid_metadata() → gather_pid_metadata_from_procfs()
Let's make clear what this function does, and what it distinguishes with
the more precisely named gather_pid_metadata_from_argv().
-rw-r--r-- | src/coredump/coredump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 4898a6f83d..08be963b8a 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -1253,7 +1253,7 @@ static int gather_pid_metadata_from_argv( return save_context(context, iovw); } -static int gather_pid_metadata(struct iovec_wrapper *iovw, Context *context) { +static int gather_pid_metadata_from_procfs(struct iovec_wrapper *iovw, Context *context) { uid_t owner_uid; pid_t pid; char *t; @@ -1395,7 +1395,7 @@ static int process_kernel(int argc, char* argv[]) { return r; /* Collect the rest of the process metadata retrieved from the runtime */ - r = gather_pid_metadata(iovw, &context); + r = gather_pid_metadata_from_procfs(iovw, &context); if (r < 0) return r; @@ -1443,7 +1443,7 @@ static int process_backtrace(int argc, char *argv[]) { goto finish; /* Collect the rest of the process metadata retrieved from the runtime */ - r = gather_pid_metadata(iovw, &context); + r = gather_pid_metadata_from_procfs(iovw, &context); if (r < 0) goto finish; |