ObjFW  Check-in [35f34deb0c]

Overview
Comment:Define EWOULDBLOCK to EAGAIN if it's missing
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 35f34deb0c3285cf1d5d32cb70164ee7011ab18db7ef3ba737ace8546b33ed21
User & Date: js on 2021-12-19 03:24:27
Other Links: manifest | tags
Context
2021-12-22
02:12
Implement -[temporaryDirectoryPath] for MS-DOS check-in: fca07c0c1b user: js tags: trunk
2021-12-19
03:24
Define EWOULDBLOCK to EAGAIN if it's missing check-in: 35f34deb0c user: js tags: trunk
2021-12-17
17:53
OFStream: Remove methods for typed/swapped arrays check-in: 808601a0cc user: js tags: trunk
Changes

Modified src/exceptions/OFException.h from [0c9aa4e00f] to [638ef1b474].

130
131
132
133
134
135
136




137
138
139
140
141
142
143
# ifndef EUSERS
#  define EUSERS WSAEUSERS
# endif
# ifndef EWOULDBLOCK
#  define EWOULDBLOCK WSAEWOULDBLOCK
# endif
#endif





/**
 * @class OFException OFException.h ObjFW/OFException.h
 *
 * @brief The base class for all exceptions in ObjFW
 *
 * The OFException class is the base class for all exceptions in ObjFW, except







>
>
>
>







130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# ifndef EUSERS
#  define EUSERS WSAEUSERS
# endif
# ifndef EWOULDBLOCK
#  define EWOULDBLOCK WSAEWOULDBLOCK
# endif
#endif

#ifndef EWOULDBLOCK
# define EWOULDBLOCK EAGAIN
#endif

/**
 * @class OFException OFException.h ObjFW/OFException.h
 *
 * @brief The base class for all exceptions in ObjFW
 *
 * The OFException class is the base class for all exceptions in ObjFW, except