mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
tools: remove -p shorthand for --no-sigusr-handler
It's not really needed, and doesn't map any longer after the long option has been renamed.
This commit is contained in:
parent
e688f6fb2b
commit
bd03793273
2 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ Save XML representation of pipeline to FILE and exit (DEPRECATED, DO NOT USE)
|
|||
.B \-f, \-\-no\-fault
|
||||
Do not install a fault handler
|
||||
.TP 8
|
||||
.B \-p, \-\-no\-sigusr-handler
|
||||
.B \-\-no\-sigusr-handler
|
||||
Do not install signal handlers for SIGUSR1 (play) and SIGUSR2 (stop)
|
||||
.TP 8
|
||||
.B \-T, \-\-trace
|
||||
|
|
|
@ -709,7 +709,7 @@ main (int argc, char *argv[])
|
|||
#endif
|
||||
{"no-fault", 'f', 0, G_OPTION_ARG_NONE, &no_fault,
|
||||
N_("Do not install a fault handler"), NULL},
|
||||
{"no-sigusr-handler", 'p', 0, G_OPTION_ARG_NONE, &no_sigusr_handler,
|
||||
{"no-sigusr-handler", '\0', 0, G_OPTION_ARG_NONE, &no_sigusr_handler,
|
||||
N_("Do not install signal handlers for SIGUSR1 and SIGUSR2"), NULL},
|
||||
{"trace", 'T', 0, G_OPTION_ARG_NONE, &trace,
|
||||
N_("Print alloc trace (if enabled at compile time)"), NULL},
|
||||
|
|
Loading…
Reference in a new issue