summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_job.c (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2023-04-03Prevent a possible NULL de-reference in nxt_job_create().Andrew Clayton1-4/+6
We allocate 'job' we then have a check if it's not NULL and do stuff with it, but then we accessed it outside this check. Simply return if job is NULL. Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
2017-08-24Removed configure option --no-threads.Igor Sysoev1-18/+0
2017-06-20Using new memory pool implementation.Igor Sysoev1-8/+11
2017-03-09Processes refactoring.Igor Sysoev1-1/+1
The cycle has been renamed to the runtime.
2017-01-27Work queues refactoring.Igor Sysoev1-16/+17
2017-01-23Introducing tasks.Igor Sysoev1-20/+29