signals.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2. * contributor license agreements. See the NOTICE file distributed with
  3. * this work for additional information regarding copyright ownership.
  4. * The ASF licenses this file to You under the Apache License, Version 2.0
  5. * (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "win32/fspr_arch_threadproc.h"
  17. #include "win32/fspr_arch_file_io.h"
  18. #include "fspr_thread_proc.h"
  19. #include "fspr_file_io.h"
  20. #include "fspr_general.h"
  21. #if APR_HAVE_SIGNAL_H
  22. #include <signal.h>
  23. #endif
  24. #include <string.h>
  25. #if APR_HAVE_SYS_WAIT
  26. #include <sys/wait.h>
  27. #endif
  28. /* Windows only really support killing process, but that will do for now.
  29. *
  30. * ### Actually, closing the input handle to the proc should also do fine
  31. * for most console apps. This definately needs improvement...
  32. */
  33. APR_DECLARE(fspr_status_t) fspr_proc_kill(fspr_proc_t *proc, int signal)
  34. {
  35. if (proc->hproc != NULL) {
  36. if (TerminateProcess(proc->hproc, signal) == 0) {
  37. return fspr_get_os_error();
  38. }
  39. /* On unix, SIGKILL leaves a fspr_proc_wait()able pid lying around,
  40. * so we will leave hproc alone until the app calls fspr_proc_wait().
  41. */
  42. return APR_SUCCESS;
  43. }
  44. return APR_EPROC_UNKNOWN;
  45. }
  46. void fspr_signal_init(fspr_pool_t *pglobal)
  47. {
  48. }
  49. const char *fspr_signal_description_get(int signum)
  50. {
  51. return "unknown signal (not supported)";
  52. }
  53. APR_DECLARE(fspr_status_t) fspr_signal_block(int signum)
  54. {
  55. return APR_ENOTIMPL;
  56. }
  57. APR_DECLARE(fspr_status_t) fspr_signal_unblock(int signum)
  58. {
  59. return APR_ENOTIMPL;
  60. }