Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions reference/posix/functions/posix-fpathconf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,30 @@
</para>
</refsect1>

<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
Now sets <varname>last_error</varname> to <constant>EBADF</constant>
and raises an <constant>E_WARNING</constant> when an invalid file
descriptor is encountered.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>

<refsect1 role="examples">
&reftitle.examples;
<example xml:id="function.posix-fpathconf.example.basic">
Expand Down
7 changes: 7 additions & 0 deletions reference/posix/functions/posix-isatty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
Now raises an <constant>E_WARNING</constant> when an invalid
<parameter>file_descriptor</parameter> is encountered.
</entry>
</row>
<row>
<entry>8.4.0</entry>
<entry>
Expand Down
25 changes: 25 additions & 0 deletions reference/posix/functions/posix-kill.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,31 @@
</para>
</refsect1>

<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
Now throws a <exceptionname>ValueError</exceptionname> when the
<parameter>process_id</parameter> is lower than what the platform
supports or greater than what the platform supports (signed integer
or long range).
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
Expand Down
24 changes: 24 additions & 0 deletions reference/posix/functions/posix-setpgid.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,30 @@
</para>
</refsect1>

<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
Now throws a <exceptionname>ValueError</exceptionname> when the
<parameter>process_id</parameter> or <parameter>process_group_id</parameter>
is lower than zero or greater than what the platform supports.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
Expand Down
25 changes: 25 additions & 0 deletions reference/posix/functions/posix-setrlimit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,31 @@
</para>
</refsect1>

<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
Now throws a <exceptionname>ValueError</exceptionname> when
<parameter>hard_limit</parameter> or <parameter>soft_limit</parameter>
is lower than -1, or when <parameter>soft_limit</parameter> is greater
than <parameter>hard_limit</parameter>.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
Expand Down
7 changes: 7 additions & 0 deletions reference/posix/functions/posix-ttyname.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
<varname>last_error</varname> is now set to <constant>EBADF</constant>
when an invalid <parameter>file_descriptor</parameter> is encountered.
</entry>
</row>
<row>
<entry>8.3.0</entry>
<entry>
Expand Down