diff options
author | Max Romanov <max.romanov@nginx.com> | 2021-03-02 18:31:03 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2021-03-02 18:31:03 +0300 |
commit | 73ac0496feb38ef2098163847206d304cf2c9a73 (patch) | |
tree | 9769607a02ceaa01fc8f4656731297760710da9a | |
parent | fddde539c9cde818857f46c24eaa7d4e57eb9b44 (diff) | |
download | unit-73ac0496feb38ef2098163847206d304cf2c9a73.tar.gz unit-73ac0496feb38ef2098163847206d304cf2c9a73.tar.bz2 |
Fixing warnings on Solaris.
pthread_t on Solaris is an integer type with size not equal to pointer size.
To avoid warnings, type casts to and from pointer needs to be done via
uintptr_t type.
This change originally proposed by Juraj Lutter <juraj@lutter.sk>.
-rw-r--r-- | src/nxt_router.c | 2 | ||||
-rw-r--r-- | src/nxt_unit.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_router.c b/src/nxt_router.c index 03fe2a6c..4be4197a 100644 --- a/src/nxt_router.c +++ b/src/nxt_router.c @@ -3726,7 +3726,7 @@ nxt_router_thread_exit_handler(nxt_task_t *task, void *obj, void *data) nxt_event_engine_t *engine; nxt_thread_handle_t handle; - handle = (nxt_thread_handle_t) obj; + handle = (nxt_thread_handle_t) (uintptr_t) obj; link = data; nxt_thread_wait(handle); diff --git a/src/nxt_unit.c b/src/nxt_unit.c index 2fef17c5..ae4499d8 100644 --- a/src/nxt_unit.c +++ b/src/nxt_unit.c @@ -3785,7 +3785,7 @@ nxt_unit_shm_open(nxt_unit_ctx_t *ctx, size_t size) char name[64]; snprintf(name, sizeof(name), NXT_SHM_PREFIX "unit.%d.%p", - lib->pid, (void *) pthread_self()); + lib->pid, (void *) (uintptr_t) pthread_self()); #endif #if (NXT_HAVE_MEMFD_CREATE) |