From Jason Turner

[depr.cerrno]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpesl127mp/{from.md → to.md} +27 -0
tmp/tmpesl127mp/{from.md → to.md} RENAMED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Deprecated error numbers <a id="depr.cerrno">[[depr.cerrno]]</a>
2
+
3
+ The following macros are defined in addition to those specified in
4
+ [[cerrno.syn]]:
5
+
6
+ ``` cpp
7
+ #define ENODATA see below
8
+ #define ENOSR see below
9
+ #define ENOSTR see below
10
+ #define ETIME see below
11
+ ```
12
+
13
+ The meaning of these macros is defined by the POSIX standard.
14
+
15
+ The following `enum errc` enumerators are defined in addition to those
16
+ specified in [[system.error.syn]]:
17
+
18
+ ``` cpp
19
+ no_message_available, // ENODATA
20
+ no_stream_resources, // ENOSR
21
+ not_a_stream, // ENOSTR
22
+ stream_timeout, // ETIME
23
+ ```
24
+
25
+ The value of each `enum errc` enumerator above is the same as the value
26
+ of the `<cerrno>` macro shown in the above synopsis.
27
+