Skip to content

Commit

Permalink
threadpool: remove non required prepocessor conditionals
Browse files Browse the repository at this point in the history
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
  • Loading branch information
juanarbol committed Dec 17, 2024
1 parent ec5a4b5 commit 8d4362f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
branches:
- v[0-9].*
- master
- juan/dead-no-zos

jobs:
build-linux:
Expand Down
3 changes: 0 additions & 3 deletions src/threadpool.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,7 @@ void uv__threadpool_cleanup(void) {
if (nthreads == 0)
return;

#ifndef __MVS__
/* TODO(gabylb) - zos: revisit when Woz compiler is available. */
post(&exit_message, UV__WORK_CPU);
#endif

for (i = 0; i < nthreads; i++)
if (uv_thread_join(threads + i))
Expand Down

0 comments on commit 8d4362f

Please sign in to comment.