Re: pthread in nginx module

2021-03-09 Thread Maxim Dounin
Hello! On Tue, Mar 09, 2021 at 01:00:20AM -0500, klowd92 wrote: > Hi Everyone, > > I am developing an nginx module. > The module requires some background processing via thread when the server is > running. > > I have written my module to use pthread.h > I have attempted to spawn a thread during

pthread in nginx module

2021-03-08 Thread klowd92
Hi Everyone, I am developing an nginx module. The module requires some background processing via thread when the server is running. I have written my module to use pthread.h I have attempted to spawn a thread during the init_module function (specified in ngx_module_t of the module) Unfortunately