upload http
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / srclib / apr / threadproc / win32 / signals.c
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
17 #include "win32/apr_arch_threadproc.h"
18 #include "win32/apr_arch_file_io.h"
19 #include "apr_thread_proc.h"
20 #include "apr_file_io.h"
21 #include "apr_general.h"
22 #if APR_HAVE_SIGNAL_H
23 #include <signal.h>
24 #endif
25 #include <string.h>
26 #if APR_HAVE_SYS_WAIT
27 #include <sys/wait.h>
28 #endif
29
30 /* Windows only really support killing process, but that will do for now. 
31  *
32  * ### Actually, closing the input handle to the proc should also do fine 
33  * for most console apps.  This definately needs improvement...
34  */
35 APR_DECLARE(apr_status_t) apr_proc_kill(apr_proc_t *proc, int signal)
36 {
37     if (proc->hproc != NULL) {
38         if (TerminateProcess(proc->hproc, signal) == 0) {
39             return apr_get_os_error();
40         }
41         /* On unix, SIGKILL leaves a apr_proc_wait()able pid lying around, 
42          * so we will leave hproc alone until the app calls apr_proc_wait().
43          */
44         return APR_SUCCESS;
45     }
46     return APR_EPROC_UNKNOWN;
47 }
48
49 void apr_signal_init(apr_pool_t *pglobal)
50 {
51 }
52
53 const char *apr_signal_description_get(int signum)
54 {
55     return "unknown signal (not supported)";
56 }
57
58 /* Deprecated */
59 const char *apr_signal_get_description(int signum)
60 {
61     return apr_signal_description_get(signum);
62 }