jorisvandenbossche commented on code in PR #37821:
URL: https://github.com/apache/arrow/pull/37821#discussion_r1386506161


##########
cpp/src/arrow/util/io_util.cc:
##########
@@ -2058,7 +2063,9 @@ Status SendSignal(int signum) {
 }
 
 Status SendSignalToThread(int signum, uint64_t thread_id) {
-#ifdef _WIN32
+#ifndef ARROW_ENABLE_THREADING
+  return Status::NotImplemented("Can't send signal with no threads");
+#elif _WIN32

Review Comment:
   ```suggestion
   #elif defined(_WIN32)
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to