upload http
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / os / netware / os.h
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 #ifndef APACHE_OS_H
18 #define APACHE_OS_H
19
20 #ifndef PLATFORM
21 #define PLATFORM "NETWARE"
22 #endif
23
24 #include <screen.h>
25
26 AP_DECLARE_DATA extern int hold_screen_on_exit; /* Indicates whether the screen should be held open on exit*/
27
28 #define CASE_BLIND_FILESYSTEM
29 #define NO_WRITEV
30
31 #define APACHE_MPM_DIR  "server/mpm/netware" /* generated on unix */
32
33 #define getpid NXThreadGetId
34
35 /* Hold the screen open if there is an exit code and the hold_screen_on_exit flag >= 0 or the
36    hold_screen_on_exit > 0.  If the hold_screen_on_exit flag is < 0 then close the screen no 
37    matter what the exit code is. */
38 #define exit(s) {if((s||hold_screen_on_exit)&&(hold_screen_on_exit>=0)){pressanykey();}apr_terminate();exit(s);}
39
40 #endif   /* ! APACHE_OS_H */