nsprpub/pr/include/md/_os2_errors.h

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

michael@0 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 #ifndef nspr_os2_errors_h___
michael@0 7 #define nspr_os2_errors_h___
michael@0 8
michael@0 9 #include "md/_os2.h"
michael@0 10 #ifndef assert
michael@0 11 #include <assert.h>
michael@0 12 #endif
michael@0 13
michael@0 14 NSPR_API(void) _MD_os2_map_default_error(PRInt32 err);
michael@0 15 #define _PR_MD_MAP_DEFAULT_ERROR _MD_os2_map_default_error
michael@0 16
michael@0 17 NSPR_API(void) _MD_os2_map_opendir_error(PRInt32 err);
michael@0 18 #define _PR_MD_MAP_OPENDIR_ERROR _MD_os2_map_opendir_error
michael@0 19
michael@0 20 NSPR_API(void) _MD_os2_map_closedir_error(PRInt32 err);
michael@0 21 #define _PR_MD_MAP_CLOSEDIR_ERROR _MD_os2_map_closedir_error
michael@0 22
michael@0 23 NSPR_API(void) _MD_os2_readdir_error(PRInt32 err);
michael@0 24 #define _PR_MD_MAP_READDIR_ERROR _MD_os2_readdir_error
michael@0 25
michael@0 26 NSPR_API(void) _MD_os2_map_delete_error(PRInt32 err);
michael@0 27 #define _PR_MD_MAP_DELETE_ERROR _MD_os2_map_delete_error
michael@0 28
michael@0 29 NSPR_API(void) _MD_os2_map_stat_error(PRInt32 err);
michael@0 30 #define _PR_MD_MAP_STAT_ERROR _MD_os2_map_stat_error
michael@0 31
michael@0 32 NSPR_API(void) _MD_os2_map_fstat_error(PRInt32 err);
michael@0 33 #define _PR_MD_MAP_FSTAT_ERROR _MD_os2_map_fstat_error
michael@0 34
michael@0 35 NSPR_API(void) _MD_os2_map_rename_error(PRInt32 err);
michael@0 36 #define _PR_MD_MAP_RENAME_ERROR _MD_os2_map_rename_error
michael@0 37
michael@0 38 NSPR_API(void) _MD_os2_map_access_error(PRInt32 err);
michael@0 39 #define _PR_MD_MAP_ACCESS_ERROR _MD_os2_map_access_error
michael@0 40
michael@0 41 NSPR_API(void) _MD_os2_map_mkdir_error(PRInt32 err);
michael@0 42 #define _PR_MD_MAP_MKDIR_ERROR _MD_os2_map_mkdir_error
michael@0 43
michael@0 44 NSPR_API(void) _MD_os2_map_rmdir_error(PRInt32 err);
michael@0 45 #define _PR_MD_MAP_RMDIR_ERROR _MD_os2_map_rmdir_error
michael@0 46
michael@0 47 NSPR_API(void) _MD_os2_map_read_error(PRInt32 err);
michael@0 48 #define _PR_MD_MAP_READ_ERROR _MD_os2_map_read_error
michael@0 49
michael@0 50 NSPR_API(void) _MD_os2_map_transmitfile_error(PRInt32 err);
michael@0 51 #define _PR_MD_MAP_TRANSMITFILE_ERROR _MD_os2_map_transmitfile_error
michael@0 52
michael@0 53 NSPR_API(void) _MD_os2_map_write_error(PRInt32 err);
michael@0 54 #define _PR_MD_MAP_WRITE_ERROR _MD_os2_map_write_error
michael@0 55
michael@0 56 NSPR_API(void) _MD_os2_map_lseek_error(PRInt32 err);
michael@0 57 #define _PR_MD_MAP_LSEEK_ERROR _MD_os2_map_lseek_error
michael@0 58
michael@0 59 NSPR_API(void) _MD_os2_map_fsync_error(PRInt32 err);
michael@0 60 #define _PR_MD_MAP_FSYNC_ERROR _MD_os2_map_fsync_error
michael@0 61
michael@0 62 NSPR_API(void) _MD_os2_map_close_error(PRInt32 err);
michael@0 63 #define _PR_MD_MAP_CLOSE_ERROR _MD_os2_map_close_error
michael@0 64
michael@0 65 NSPR_API(void) _MD_os2_map_socket_error(PRInt32 err);
michael@0 66 #define _PR_MD_MAP_SOCKET_ERROR _MD_os2_map_socket_error
michael@0 67
michael@0 68 NSPR_API(void) _MD_os2_map_recv_error(PRInt32 err);
michael@0 69 #define _PR_MD_MAP_RECV_ERROR _MD_os2_map_recv_error
michael@0 70
michael@0 71 NSPR_API(void) _MD_os2_map_recvfrom_error(PRInt32 err);
michael@0 72 #define _PR_MD_MAP_RECVFROM_ERROR _MD_os2_map_recvfrom_error
michael@0 73
michael@0 74 NSPR_API(void) _MD_os2_map_send_error(PRInt32 err);
michael@0 75 #define _PR_MD_MAP_SEND_ERROR _MD_os2_map_send_error
michael@0 76
michael@0 77 NSPR_API(void) _MD_os2_map_sendto_error(PRInt32 err);
michael@0 78 #define _PR_MD_MAP_SENDTO_ERROR _MD_os2_map_sendto_error
michael@0 79
michael@0 80 NSPR_API(void) _MD_os2_map_writev_error(int err);
michael@0 81 #define _PR_MD_MAP_WRITEV_ERROR _MD_os2_map_writev_error
michael@0 82
michael@0 83 NSPR_API(void) _MD_os2_map_accept_error(PRInt32 err);
michael@0 84 #define _PR_MD_MAP_ACCEPT_ERROR _MD_os2_map_accept_error
michael@0 85
michael@0 86 NSPR_API(void) _MD_os2_map_acceptex_error(PRInt32 err);
michael@0 87 #define _PR_MD_MAP_ACCEPTEX_ERROR _MD_os2_map_acceptex_error
michael@0 88
michael@0 89 NSPR_API(void) _MD_os2_map_connect_error(PRInt32 err);
michael@0 90 #define _PR_MD_MAP_CONNECT_ERROR _MD_os2_map_connect_error
michael@0 91
michael@0 92 NSPR_API(void) _MD_os2_map_bind_error(PRInt32 err);
michael@0 93 #define _PR_MD_MAP_BIND_ERROR _MD_os2_map_bind_error
michael@0 94
michael@0 95 NSPR_API(void) _MD_os2_map_listen_error(PRInt32 err);
michael@0 96 #define _PR_MD_MAP_LISTEN_ERROR _MD_os2_map_listen_error
michael@0 97
michael@0 98 NSPR_API(void) _MD_os2_map_shutdown_error(PRInt32 err);
michael@0 99 #define _PR_MD_MAP_SHUTDOWN_ERROR _MD_os2_map_shutdown_error
michael@0 100
michael@0 101 NSPR_API(void) _MD_os2_map_socketpair_error(int err);
michael@0 102 #define _PR_MD_MAP_SOCKETPAIR_ERROR _MD_os2_map_socketpair_error
michael@0 103
michael@0 104 NSPR_API(void) _MD_os2_map_getsockname_error(PRInt32 err);
michael@0 105 #define _PR_MD_MAP_GETSOCKNAME_ERROR _MD_os2_map_getsockname_error
michael@0 106
michael@0 107 NSPR_API(void) _MD_os2_map_getpeername_error(PRInt32 err);
michael@0 108 #define _PR_MD_MAP_GETPEERNAME_ERROR _MD_os2_map_getpeername_error
michael@0 109
michael@0 110 NSPR_API(void) _MD_os2_map_getsockopt_error(PRInt32 err);
michael@0 111 #define _PR_MD_MAP_GETSOCKOPT_ERROR _MD_os2_map_getsockopt_error
michael@0 112
michael@0 113 NSPR_API(void) _MD_os2_map_setsockopt_error(PRInt32 err);
michael@0 114 #define _PR_MD_MAP_SETSOCKOPT_ERROR _MD_os2_map_setsockopt_error
michael@0 115
michael@0 116 NSPR_API(void) _MD_os2_map_open_error(PRInt32 err);
michael@0 117 #define _PR_MD_MAP_OPEN_ERROR _MD_os2_map_open_error
michael@0 118
michael@0 119 NSPR_API(void) _MD_os2_map_gethostname_error(PRInt32 err);
michael@0 120 #define _PR_MD_MAP_GETHOSTNAME_ERROR _MD_os2_map_gethostname_error
michael@0 121
michael@0 122 NSPR_API(void) _MD_os2_map_select_error(PRInt32 err);
michael@0 123 #define _PR_MD_MAP_SELECT_ERROR _MD_os2_map_select_error
michael@0 124
michael@0 125 NSPR_API(void) _MD_os2_map_lockf_error(int err);
michael@0 126 #define _PR_MD_MAP_LOCKF_ERROR _MD_os2_map_lockf_error
michael@0 127
michael@0 128 #endif /* nspr_os2_errors_h___ */

mercurial