::
Re: [DNG] issue with procps, any hi…
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Este mensaje es parte del siguiente hilo:
El árbol completo de hilos, ordenados por fecha
tito, mensaje del
2022-12-20 14:03
aitor, mensaje del
2022-12-20 14:08
Autor:
aitor
Fecha:
2022-12-20 14:05
UTC
A:
dng
Asunto:
Re: [DNG] issue with procps, any hints?
Hi Tito,
On 20/12/22 14:58, tito via Dng wrote:
> $$ is the process ID (PID) of the script itself.
Yes, passing $$ to the program, the condition:
if( proc_info->tgid == atoi(argv[1]) )
is the same than:
if( proc_info->tgid == getpid() )
Cheers,
Aitor.