blob: b1b1cd1a28f9455edae20a8a80fe76bac515faa2 [file] [log] [blame]
Benny Prijonof260e462007-04-30 21:03:32 +00001/* $Id$ */
2/*
3 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#ifndef __PJ_COMPAT_OS_SYMBIAN_H__
20#define __PJ_COMPAT_OS_SYMBIAN_H__
21
22/**
23 * @file os_symbian.h
24 * @brief Describes Symbian operating system specifics.
25 */
26
27#define PJ_OS_NAME "symbian"
28
29#define PJ_HAS_ARPA_INET_H 1
30#define PJ_HAS_ASSERT_H 1
31#define PJ_HAS_CTYPE_H 1
32#define PJ_HAS_ERRNO_H 1
33#define PJ_HAS_LINUX_SOCKET_H 0
34#define PJ_HAS_MALLOC_H 0
35#define PJ_HAS_NETDB_H 1
36#define PJ_HAS_NETINET_IN_H 1
37#define PJ_HAS_SETJMP_H 1
38#define PJ_HAS_STDARG_H 1
39#define PJ_HAS_STDDEF_H 1
40#define PJ_HAS_STDIO_H 1
41#define PJ_HAS_STDLIB_H 1
42#define PJ_HAS_STRING_H 1
43#define PJ_HAS_NO_SNPRINTF 1
44#define PJ_HAS_SYS_IOCTL_H 1
45#define PJ_HAS_SYS_SELECT_H 0
46#define PJ_HAS_SYS_SOCKET_H 1
47#define PJ_HAS_SYS_TIME_H 1
48#define PJ_HAS_SYS_TIMEB_H 0
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#define PJ_SOCK_HAS_INET_ATON 0
58
59/* Set 1 if native sockaddr_in has sin_len member.
60 * Default: 0
61 */
62#define PJ_SOCKADDR_HAS_LEN 0
63/* Is errno a good way to retrieve OS errors?
64 */
65#define PJ_HAS_ERRNO_VAR 1
66
67/* When this macro is set, getsockopt(SOL_SOCKET, SO_ERROR) will return
68 * the status of non-blocking connect() operation.
69 */
70#define PJ_HAS_SO_ERROR 1
71
72/**
73 * If this macro is set, it tells select I/O Queue that select() needs to
74 * be given correct value of nfds (i.e. largest fd + 1). This requires
75 * select ioqueue to re-scan the descriptors on each registration and
76 * unregistration.
77 * If this macro is not set, then ioqueue will always give FD_SETSIZE for
78 * nfds argument when calling select().
79 *
80 * Default: 0
81 */
82#define PJ_SELECT_NEEDS_NFDS 0
83
84/* This value specifies the value set in errno by the OS when a non-blocking
85 * socket recv() can not return immediate daata.
86 */
87#define PJ_BLOCKING_ERROR_VAL EAGAIN
88
89/* This value specifies the value set in errno by the OS when a non-blocking
90 * socket connect() can not get connected immediately.
91 */
92#define PJ_BLOCKING_CONNECT_ERROR_VAL EINPROGRESS
93
94/*
95 * We don't want to use threads in Symbian
96 */
97#define PJ_HAS_THREADS 0
98
99
100/*
101 * Declare __FD_SETSIZE now before including <linux*>.
102#define __FD_SETSIZE PJ_IOQUEUE_MAX_HANDLES
103 */
104
105#ifndef NULL
106# define NULL 0
107#endif
108
109
110/* Doesn't seem to allow more than this */
111#define PJ_IOQUEUE_MAX_HANDLES 8
112
113/*
114 * Override features.
115 */
116#define PJ_HAS_FLOATING_POINT 1
117#define PJ_HAS_MALLOC 0
118#define PJ_HAS_SEMAPHORE 1
119#define PJ_HAS_EVENT_OBJ 0
120#define PJ_HAS_HIGH_RES_TIMER 1
121#define PJ_OS_HAS_CHECK_STACK 0
122#define PJ_TERM_HAS_COLOR 0
123#define PJ_NATIVE_STRING_IS_UNICODE 0
Benny Prijono5d542642007-05-02 18:54:19 +0000124#define PJ_NATIVE_ERR_POSITIVE 0
Benny Prijonof260e462007-04-30 21:03:32 +0000125
126#define PJ_ATOMIC_VALUE_TYPE int
127#define PJ_THREAD_DESC_SIZE 128
128
129/* If 1, use Read/Write mutex emulation for platforms that don't support it */
130#define PJ_EMULATE_RWMUTEX 1
131
132/* If 1, pj_thread_create() should enforce the stack size when creating
133 * threads.
134 * Default: 0 (let OS decide the thread's stack size).
135 */
136#define PJ_THREAD_SET_STACK_SIZE 0
137
138/* If 1, pj_thread_create() should allocate stack from the pool supplied.
139 * Default: 0 (let OS allocate memory for thread's stack).
140 */
141#define PJ_THREAD_ALLOCATE_STACK 0
142
143/* Missing socklen_t */
144#define PJ_HAS_SOCKLEN_T 1
145typedef unsigned int socklen_t;
146
147#include <e32def.h>
148
Benny Prijonoba5926a2007-05-02 11:29:37 +0000149/*
Benny Prijonof260e462007-04-30 21:03:32 +0000150#if defined(PJ_EXPORTING)
151# define PJ_EXPORT_IMPORT EXPORT_C
152#elif defined(PJ_IMPORTING)
153# define PJ_EXPORT_IMPORT IMPORT_C
154#else
155# error "Must define either PJ_EXPORTING or PJ_IMPORTING"
156#endif
Benny Prijonoba5926a2007-05-02 11:29:37 +0000157*/
Benny Prijonof260e462007-04-30 21:03:32 +0000158
159#endif /* __PJ_COMPAT_OS_SYMBIAN_H__ */
160
161
162