blob: d212102f0a622be2d1ac5641d95f97c4b6a67714 [file] [log] [blame]
Benny Prijonoe67d99a2006-03-20 12:39:24 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijonoe67d99a2006-03-20 12:39:24 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef __PJ_COMPAT_OS_DARWINOS_H__
21#define __PJ_COMPAT_OS_DARWINOS_H__
22
23/**
24 * @file os_darwinos.h
25 * @brief Describes Darwin/MacOSX operating system specifics.
26 */
27
28#define PJ_OS_NAME "darwin"
29
30#define PJ_HAS_ARPA_INET_H 1
31#define PJ_HAS_ASSERT_H 1
32#define PJ_HAS_CTYPE_H 1
33#define PJ_HAS_ERRNO_H 1
34#define PJ_HAS_LINUX_SOCKET_H 0
35#define PJ_HAS_MALLOC_H 0
36#define PJ_HAS_NETDB_H 1
37#define PJ_HAS_NETINET_IN_H 1
38#define PJ_HAS_SETJMP_H 1
39#define PJ_HAS_STDARG_H 1
40#define PJ_HAS_STDDEF_H 1
41#define PJ_HAS_STDIO_H 1
42#define PJ_HAS_STDLIB_H 1
43#define PJ_HAS_STRING_H 1
44#define PJ_HAS_SYS_IOCTL_H 1
45#define PJ_HAS_SYS_SELECT_H 1
46#define PJ_HAS_SYS_SOCKET_H 1
47#define PJ_HAS_SYS_TIME_H 1
48#define PJ_HAS_SYS_TIMEB_H 1
49#define PJ_HAS_SYS_TYPES_H 1
50#define PJ_HAS_TIME_H 1
51#define PJ_HAS_UNISTD_H 1
52
53#define PJ_HAS_MSWSOCK_H 0
54#define PJ_HAS_WINSOCK_H 0
55#define PJ_HAS_WINSOCK2_H 0
56
57/* Is errno a good way to retrieve OS errors?
58 */
59#define PJ_HAS_ERRNO_VAR 1
60
61/* Has inet_aton() ?
62 */
63#define PJ_SOCK_HAS_INET_ATON 1
64
65/* When this macro is set, getsockopt(SOL_SOCKET, SO_ERROR) will return
66 * the status of non-blocking connect() operation.
67 */
68#define PJ_HAS_SO_ERROR 1
69
70/* This value specifies the value set in errno by the OS when a non-blocking
71 * socket recv() can not return immediate daata.
72 */
73#define PJ_BLOCKING_ERROR_VAL EWOULDBLOCK
74
75/* This value specifies the value set in errno by the OS when a non-blocking
76 * socket connect() can not get connected immediately.
77 */
78#define PJ_BLOCKING_CONNECT_ERROR_VAL EINPROGRESS
79
80/* Default threading is enabled, unless it's overridden. */
81#ifndef PJ_HAS_THREADS
82# define PJ_HAS_THREADS (1)
83#endif
84
85#define PJ_HAS_HIGH_RES_TIMER 1
86#define PJ_HAS_MALLOC 1
87#ifndef PJ_OS_HAS_CHECK_STACK
88# define PJ_OS_HAS_CHECK_STACK 0
89#endif
90#define PJ_NATIVE_STRING_IS_UNICODE 0
91
92#define PJ_ATOMIC_VALUE_TYPE long
93
94/*
95 * Socket related
96 */
97typedef int socklen_t;
Benny Prijono42c5b9e2006-05-10 19:24:40 +000098
99/* Set 1 if native sockaddr_in has sin_len member.
100 * Default: 0
101 */
Benny Prijonoe67d99a2006-03-20 12:39:24 +0000102#define PJ_SOCKADDR_HAS_LEN 1
103
104/*
105 * gcc complains that it can not use precompiled header because
106 * the value of FD_SETSIZE that we declare in pj/config.h is
107 * different than the value in /usr/include/sys/types.h.
108 *
109 * This changes the default value for Darwin.
110 */
111#define PJ_IOQUEUE_MAX_HANDLES 1024
112
Benny Prijono42c5b9e2006-05-10 19:24:40 +0000113/**
114 * If this macro is set, it tells select I/O Queue that select() needs to
115 * be given correct value of nfds (i.e. largest fd + 1). This requires
116 * select ioqueue to re-scan the descriptors on each registration and
117 * unregistration.
118 * If this macro is not set, then ioqueue will always give FD_SETSIZE for
119 * nfds argument when calling select().
120 *
121 * Default: 0
122 */
123#define PJ_SELECT_NEEDS_NFDS 0
124
125/* If 1, use Read/Write mutex emulation for platforms that don't support it */
126#define PJ_EMULATE_RWMUTEX 0
127
128/* If 1, pj_thread_create() should enforce the stack size when creating
129 * threads.
130 * Default: 0 (let OS decide the thread's stack size).
131 */
132#define PJ_THREAD_SET_STACK_SIZE 0
133
134/* If 1, pj_thread_create() should allocate stack from the pool supplied.
135 * Default: 0 (let OS allocate memory for thread's stack).
136 */
137#define PJ_THREAD_ALLOCATE_STACK 0
138
Benny Prijono893628d2006-09-14 11:26:37 +0000139/* Oh well.. MacOS 10.2 doesn't have socklen_t, but 10.4 has! */
140#define PJ_HAS_SOCKLEN_T 0
141
Benny Prijonoe67d99a2006-03-20 12:39:24 +0000142
143#endif /* __PJ_COMPAT_OS_DARWINOS_H__ */
144