nsprpub/pr/include/md/_unix_errors.h

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     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/. */
     6 #ifndef prunixerrors_h___
     7 #define prunixerrors_h___
     9 #include <unistd.h>
    10 #include <stddef.h>
    12 PR_BEGIN_EXTERN_C
    14 extern void _MD_unix_map_default_error(int err);
    15 #define	_PR_MD_MAP_DEFAULT_ERROR	_MD_unix_map_default_error
    17 extern void _MD_unix_map_opendir_error(int err);
    18 #define	_PR_MD_MAP_OPENDIR_ERROR	_MD_unix_map_opendir_error
    20 extern void _MD_unix_map_closedir_error(int err);
    21 #define	_PR_MD_MAP_CLOSEDIR_ERROR	_MD_unix_map_closedir_error
    23 extern void _MD_unix_readdir_error(int err);
    24 #define	_PR_MD_MAP_READDIR_ERROR	_MD_unix_readdir_error
    26 extern void _MD_unix_map_unlink_error(int err);
    27 #define	_PR_MD_MAP_UNLINK_ERROR	_MD_unix_map_unlink_error
    29 extern void _MD_unix_map_stat_error(int err);
    30 #define	_PR_MD_MAP_STAT_ERROR	_MD_unix_map_stat_error
    32 extern void _MD_unix_map_fstat_error(int err);
    33 #define	_PR_MD_MAP_FSTAT_ERROR	_MD_unix_map_fstat_error
    35 extern void _MD_unix_map_rename_error(int err);
    36 #define	_PR_MD_MAP_RENAME_ERROR	_MD_unix_map_rename_error
    38 extern void _MD_unix_map_access_error(int err);
    39 #define	_PR_MD_MAP_ACCESS_ERROR	_MD_unix_map_access_error
    41 extern void _MD_unix_map_mkdir_error(int err);
    42 #define	_PR_MD_MAP_MKDIR_ERROR	_MD_unix_map_mkdir_error
    44 extern void _MD_unix_map_rmdir_error(int err);
    45 #define	_PR_MD_MAP_RMDIR_ERROR	_MD_unix_map_rmdir_error
    47 extern void _MD_unix_map_read_error(int err);
    48 #define	_PR_MD_MAP_READ_ERROR	_MD_unix_map_read_error
    50 extern void _MD_unix_map_write_error(int err);
    51 #define	_PR_MD_MAP_WRITE_ERROR	_MD_unix_map_write_error
    53 extern void _MD_unix_map_lseek_error(int err);
    54 #define	_PR_MD_MAP_LSEEK_ERROR	_MD_unix_map_lseek_error
    56 extern void _MD_unix_map_fsync_error(int err);
    57 #define	_PR_MD_MAP_FSYNC_ERROR	_MD_unix_map_fsync_error
    59 extern void _MD_unix_map_close_error(int err);
    60 #define	_PR_MD_MAP_CLOSE_ERROR	_MD_unix_map_close_error
    62 extern void _MD_unix_map_socket_error(int err);
    63 #define	_PR_MD_MAP_SOCKET_ERROR	_MD_unix_map_socket_error
    65 extern void _MD_unix_map_socketavailable_error(int err);
    66 #define	_PR_MD_MAP_SOCKETAVAILABLE_ERROR	_MD_unix_map_socketavailable_error
    68 extern void _MD_unix_map_recv_error(int err);
    69 #define	_PR_MD_MAP_RECV_ERROR	_MD_unix_map_recv_error
    71 extern void _MD_unix_map_recvfrom_error(int err);
    72 #define	_PR_MD_MAP_RECVFROM_ERROR	_MD_unix_map_recvfrom_error
    74 extern void _MD_unix_map_send_error(int err);
    75 #define	_PR_MD_MAP_SEND_ERROR	_MD_unix_map_send_error
    77 extern void _MD_unix_map_sendto_error(int err);
    78 #define	_PR_MD_MAP_SENDTO_ERROR	_MD_unix_map_sendto_error
    80 extern void _MD_unix_map_writev_error(int err);
    81 #define	_PR_MD_MAP_WRITEV_ERROR	_MD_unix_map_writev_error
    83 extern void _MD_unix_map_accept_error(int err);
    84 #define	_PR_MD_MAP_ACCEPT_ERROR	_MD_unix_map_accept_error
    86 extern void _MD_unix_map_connect_error(int err);
    87 #define	_PR_MD_MAP_CONNECT_ERROR	_MD_unix_map_connect_error
    89 extern void _MD_unix_map_bind_error(int err);
    90 #define	_PR_MD_MAP_BIND_ERROR	_MD_unix_map_bind_error
    92 extern void _MD_unix_map_listen_error(int err);
    93 #define	_PR_MD_MAP_LISTEN_ERROR	_MD_unix_map_listen_error
    95 extern void _MD_unix_map_shutdown_error(int err);
    96 #define	_PR_MD_MAP_SHUTDOWN_ERROR	_MD_unix_map_shutdown_error
    98 extern void _MD_unix_map_socketpair_error(int err);
    99 #define	_PR_MD_MAP_SOCKETPAIR_ERROR	_MD_unix_map_socketpair_error
   101 extern void _MD_unix_map_getsockname_error(int err);
   102 #define	_PR_MD_MAP_GETSOCKNAME_ERROR	_MD_unix_map_getsockname_error
   104 extern void _MD_unix_map_getpeername_error(int err);
   105 #define	_PR_MD_MAP_GETPEERNAME_ERROR	_MD_unix_map_getpeername_error
   107 extern void _MD_unix_map_getsockopt_error(int err);
   108 #define	_PR_MD_MAP_GETSOCKOPT_ERROR	_MD_unix_map_getsockopt_error
   110 extern void _MD_unix_map_setsockopt_error(int err);
   111 #define	_PR_MD_MAP_SETSOCKOPT_ERROR	_MD_unix_map_setsockopt_error
   113 extern void _MD_unix_map_open_error(int err);
   114 #define	_PR_MD_MAP_OPEN_ERROR	_MD_unix_map_open_error
   116 extern void _MD_unix_map_mmap_error(int err);
   117 #define	_PR_MD_MAP_MMAP_ERROR	_MD_unix_map_mmap_error
   119 extern void _MD_unix_map_gethostname_error(int err);
   120 #define	_PR_MD_MAP_GETHOSTNAME_ERROR	_MD_unix_map_gethostname_error
   122 extern void _MD_unix_map_select_error(int err);
   123 #define	_PR_MD_MAP_SELECT_ERROR	_MD_unix_map_select_error
   125 extern void _MD_unix_map_poll_error(int err);
   126 #define _PR_MD_MAP_POLL_ERROR _MD_unix_map_poll_error
   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
   131 extern void _MD_unix_map_flock_error(int err);
   132 #define	_PR_MD_MAP_FLOCK_ERROR	_MD_unix_map_flock_error
   134 extern void _MD_unix_map_lockf_error(int err);
   135 #define	_PR_MD_MAP_LOCKF_ERROR	_MD_unix_map_lockf_error
   137 PR_END_EXTERN_C
   139 #endif /* prunixerrors_h___ */

mercurial