CVSROOT: /cvs Module name: src Changes by: [email protected] 2025/06/19 23:00:01
Modified files:
usr.sbin/rpki-client: parser.c
Log message:
When work is done signal all threads to exit and join them
Relace the infinite loops with a while (!quit) loop and set quit = 1
when the pipe to the parent is closed. The main thread then signals
all threads and uses pthread_join to wait for them. This way all threads
can cleanup and exit.
OK tb@ job@
