aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_thread_pool.c
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2025-05-21 22:30:20 +0100
committerRoman Arutyunyan <arutyunyan.roman@gmail.com>2025-06-21 10:36:45 +0400
commit4eaecc5e8aa7bbaf9e58bf56560a8b1e67d0a8b7 (patch)
tree9f2a7e24461e1a32f1a78fe066544f1c78fb1109 /src/core/ngx_thread_pool.c
parentc370ac8a51152cc67f803b553579bfc16299efc3 (diff)
downloadnginx-4eaecc5e8aa7bbaf9e58bf56560a8b1e67d0a8b7.tar.gz
nginx-4eaecc5e8aa7bbaf9e58bf56560a8b1e67d0a8b7.zip
Use NULL instead of 0 for null pointer constant.
There were a few random places where 0 was being used as a null pointer constant. We have a NULL macro for this very purpose, use it. There is also some interest in actually deprecating the use of 0 as a null pointer constant in C. This was found with -Wzero-as-null-pointer-constant which was enabled for C in GCC 15 (not enabled with Wall or Wextra... yet). Link: <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117059>
Diffstat (limited to 'src/core/ngx_thread_pool.c')
-rw-r--r--src/core/ngx_thread_pool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_thread_pool.c b/src/core/ngx_thread_pool.c
index 7fb0f7f8d..7bf90e958 100644
--- a/src/core/ngx_thread_pool.c
+++ b/src/core/ngx_thread_pool.c
@@ -207,7 +207,7 @@ ngx_thread_pool_exit_handler(void *data, ngx_log_t *log)
*lock = 0;
- pthread_exit(0);
+ pthread_exit(NULL);
}