mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
Previously, we limit the length of process name by 8. This relax the restriction then at least process comm or program_invocation_name contains the untrucated process name. Closes #38367.
19 lines
488 B
C
19 lines
488 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "basic-forward.h"
|
|
|
|
extern int saved_argc;
|
|
extern char **saved_argv;
|
|
|
|
void save_argc_argv(int argc, char **argv);
|
|
|
|
bool invoked_as(char *argv[], const char *token);
|
|
bool invoked_by_systemd(void);
|
|
bool argv_looks_like_help(int argc, char **argv);
|
|
|
|
int rename_process_full(const char *comm, const char *invocation);
|
|
static inline int rename_process(const char *name) {
|
|
return rename_process_full(name, name);
|
|
}
|