CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2025/06/04 03:18:28
Modified files:
usr.sbin/rpki-client: Makefile cert.c crl.c extern.h io.c main.c
parser.c rpki-client.8
Log message:
Use pthreads in the parser process of rpki-client
The parser does all the certificate validation which is very CPU intensive
but reasonably simple to do in parallel. There are just a few data structures
that need read/write locks. Rigth now the default is 1 thread. Tests have
shown that more than around 4 threads gives very little benefit.
OK tb@ job@