| 8202da12 | 03-Jan-2022 |
zrj <rimvydas.jasinskas@gmail.com> |
libc: Fix environment passing in posix_spawnp(3)
The execvPe() was always passing the parent process environment to children (a long standing bug).
While there, replace the deprecated index(3) w
libc: Fix environment passing in posix_spawnp(3)
The execvPe() was always passing the parent process environment to children (a long standing bug).
While there, replace the deprecated index(3) with strchr(3).
Reported-by: falsifian (breakage in hs-git-annex)
show more ...
|
| f6406598 | 15-Jun-2021 |
Sascha Wildner <saw@online.de> |
sysconf.3: Remove wrong info about "minimum maximum" values.
_SC_STREAM_MAX and _SC_TZNAME_MAX do not return the lower bounds of the respective maximum limits as the manual page claims, but instead
sysconf.3: Remove wrong info about "minimum maximum" values.
_SC_STREAM_MAX and _SC_TZNAME_MAX do not return the lower bounds of the respective maximum limits as the manual page claims, but instead the actual maximum values.
See the table here: https://pubs.opengroup.org/onlinepubs/9699919799/functions/sysconf.html
What the manual page is really thinking of are _POSIX_STREAM_MAX and _POSIX_TZNAME_MAX. But those are not retrievable with sysconf(), as there are no corresponding _SC_* constants for them.
While here, fix a typo (types -> bytes).
show more ...
|
| 48e07bd5 | 13-Jun-2021 |
Sascha Wildner <saw@online.de> |
confstr(3): Add minimal support for V[67]_ENV.
_CS_V6_ENV and _CS_V7_ENV were both added in Issue 7 of the standard. Issue 6 did not have _CS_V6_ENV.
Right now they are empty. We'll see if more is
confstr(3): Add minimal support for V[67]_ENV.
_CS_V6_ENV and _CS_V7_ENV were both added in Issue 7 of the standard. Issue 6 did not have _CS_V6_ENV.
Right now they are empty. We'll see if more is needed in the future, but I doubt it.
show more ...
|