Mercurial > trustbridge > nss-cmake-static
comparison nspr/pr/include/md/_unix_errors.h @ 0:1e5118fa0cb1
This is NSS with a Cmake Buildsyste
To compile a static NSS library for Windows we've used the
Chromium-NSS fork and added a Cmake buildsystem to compile
it statically for Windows. See README.chromium for chromium
changes and README.trustbridge for our modifications.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 28 Jul 2014 10:47:06 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1e5118fa0cb1 |
---|---|
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | |
2 /* This Source Code Form is subject to the terms of the Mozilla Public | |
3 * License, v. 2.0. If a copy of the MPL was not distributed with this | |
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
5 | |
6 #ifndef prunixerrors_h___ | |
7 #define prunixerrors_h___ | |
8 | |
9 #include <unistd.h> | |
10 #include <stddef.h> | |
11 | |
12 PR_BEGIN_EXTERN_C | |
13 | |
14 extern void _MD_unix_map_default_error(int err); | |
15 #define _PR_MD_MAP_DEFAULT_ERROR _MD_unix_map_default_error | |
16 | |
17 extern void _MD_unix_map_opendir_error(int err); | |
18 #define _PR_MD_MAP_OPENDIR_ERROR _MD_unix_map_opendir_error | |
19 | |
20 extern void _MD_unix_map_closedir_error(int err); | |
21 #define _PR_MD_MAP_CLOSEDIR_ERROR _MD_unix_map_closedir_error | |
22 | |
23 extern void _MD_unix_readdir_error(int err); | |
24 #define _PR_MD_MAP_READDIR_ERROR _MD_unix_readdir_error | |
25 | |
26 extern void _MD_unix_map_unlink_error(int err); | |
27 #define _PR_MD_MAP_UNLINK_ERROR _MD_unix_map_unlink_error | |
28 | |
29 extern void _MD_unix_map_stat_error(int err); | |
30 #define _PR_MD_MAP_STAT_ERROR _MD_unix_map_stat_error | |
31 | |
32 extern void _MD_unix_map_fstat_error(int err); | |
33 #define _PR_MD_MAP_FSTAT_ERROR _MD_unix_map_fstat_error | |
34 | |
35 extern void _MD_unix_map_rename_error(int err); | |
36 #define _PR_MD_MAP_RENAME_ERROR _MD_unix_map_rename_error | |
37 | |
38 extern void _MD_unix_map_access_error(int err); | |
39 #define _PR_MD_MAP_ACCESS_ERROR _MD_unix_map_access_error | |
40 | |
41 extern void _MD_unix_map_mkdir_error(int err); | |
42 #define _PR_MD_MAP_MKDIR_ERROR _MD_unix_map_mkdir_error | |
43 | |
44 extern void _MD_unix_map_rmdir_error(int err); | |
45 #define _PR_MD_MAP_RMDIR_ERROR _MD_unix_map_rmdir_error | |
46 | |
47 extern void _MD_unix_map_read_error(int err); | |
48 #define _PR_MD_MAP_READ_ERROR _MD_unix_map_read_error | |
49 | |
50 extern void _MD_unix_map_write_error(int err); | |
51 #define _PR_MD_MAP_WRITE_ERROR _MD_unix_map_write_error | |
52 | |
53 extern void _MD_unix_map_lseek_error(int err); | |
54 #define _PR_MD_MAP_LSEEK_ERROR _MD_unix_map_lseek_error | |
55 | |
56 extern void _MD_unix_map_fsync_error(int err); | |
57 #define _PR_MD_MAP_FSYNC_ERROR _MD_unix_map_fsync_error | |
58 | |
59 extern void _MD_unix_map_close_error(int err); | |
60 #define _PR_MD_MAP_CLOSE_ERROR _MD_unix_map_close_error | |
61 | |
62 extern void _MD_unix_map_socket_error(int err); | |
63 #define _PR_MD_MAP_SOCKET_ERROR _MD_unix_map_socket_error | |
64 | |
65 extern void _MD_unix_map_socketavailable_error(int err); | |
66 #define _PR_MD_MAP_SOCKETAVAILABLE_ERROR _MD_unix_map_socketavailable_error | |
67 | |
68 extern void _MD_unix_map_recv_error(int err); | |
69 #define _PR_MD_MAP_RECV_ERROR _MD_unix_map_recv_error | |
70 | |
71 extern void _MD_unix_map_recvfrom_error(int err); | |
72 #define _PR_MD_MAP_RECVFROM_ERROR _MD_unix_map_recvfrom_error | |
73 | |
74 extern void _MD_unix_map_send_error(int err); | |
75 #define _PR_MD_MAP_SEND_ERROR _MD_unix_map_send_error | |
76 | |
77 extern void _MD_unix_map_sendto_error(int err); | |
78 #define _PR_MD_MAP_SENDTO_ERROR _MD_unix_map_sendto_error | |
79 | |
80 extern void _MD_unix_map_writev_error(int err); | |
81 #define _PR_MD_MAP_WRITEV_ERROR _MD_unix_map_writev_error | |
82 | |
83 extern void _MD_unix_map_accept_error(int err); | |
84 #define _PR_MD_MAP_ACCEPT_ERROR _MD_unix_map_accept_error | |
85 | |
86 extern void _MD_unix_map_connect_error(int err); | |
87 #define _PR_MD_MAP_CONNECT_ERROR _MD_unix_map_connect_error | |
88 | |
89 extern void _MD_unix_map_bind_error(int err); | |
90 #define _PR_MD_MAP_BIND_ERROR _MD_unix_map_bind_error | |
91 | |
92 extern void _MD_unix_map_listen_error(int err); | |
93 #define _PR_MD_MAP_LISTEN_ERROR _MD_unix_map_listen_error | |
94 | |
95 extern void _MD_unix_map_shutdown_error(int err); | |
96 #define _PR_MD_MAP_SHUTDOWN_ERROR _MD_unix_map_shutdown_error | |
97 | |
98 extern void _MD_unix_map_socketpair_error(int err); | |
99 #define _PR_MD_MAP_SOCKETPAIR_ERROR _MD_unix_map_socketpair_error | |
100 | |
101 extern void _MD_unix_map_getsockname_error(int err); | |
102 #define _PR_MD_MAP_GETSOCKNAME_ERROR _MD_unix_map_getsockname_error | |
103 | |
104 extern void _MD_unix_map_getpeername_error(int err); | |
105 #define _PR_MD_MAP_GETPEERNAME_ERROR _MD_unix_map_getpeername_error | |
106 | |
107 extern void _MD_unix_map_getsockopt_error(int err); | |
108 #define _PR_MD_MAP_GETSOCKOPT_ERROR _MD_unix_map_getsockopt_error | |
109 | |
110 extern void _MD_unix_map_setsockopt_error(int err); | |
111 #define _PR_MD_MAP_SETSOCKOPT_ERROR _MD_unix_map_setsockopt_error | |
112 | |
113 extern void _MD_unix_map_open_error(int err); | |
114 #define _PR_MD_MAP_OPEN_ERROR _MD_unix_map_open_error | |
115 | |
116 extern void _MD_unix_map_mmap_error(int err); | |
117 #define _PR_MD_MAP_MMAP_ERROR _MD_unix_map_mmap_error | |
118 | |
119 extern void _MD_unix_map_gethostname_error(int err); | |
120 #define _PR_MD_MAP_GETHOSTNAME_ERROR _MD_unix_map_gethostname_error | |
121 | |
122 extern void _MD_unix_map_select_error(int err); | |
123 #define _PR_MD_MAP_SELECT_ERROR _MD_unix_map_select_error | |
124 | |
125 extern void _MD_unix_map_poll_error(int err); | |
126 #define _PR_MD_MAP_POLL_ERROR _MD_unix_map_poll_error | |
127 | |
128 extern void _MD_unix_map_poll_revents_error(int err); | |
129 #define _PR_MD_MAP_POLL_REVENTS_ERROR _MD_unix_map_poll_revents_error | |
130 | |
131 extern void _MD_unix_map_flock_error(int err); | |
132 #define _PR_MD_MAP_FLOCK_ERROR _MD_unix_map_flock_error | |
133 | |
134 extern void _MD_unix_map_lockf_error(int err); | |
135 #define _PR_MD_MAP_LOCKF_ERROR _MD_unix_map_lockf_error | |
136 | |
137 PR_END_EXTERN_C | |
138 | |
139 #endif /* prunixerrors_h___ */ |