about summary refs log tree commit diff
path: root/src/conf
Commit message (Collapse)AuthorAgeFilesLines
* report support of TPS option in unistd.h and sysconfRich Felker2012-11-111-2/+2
| | | | also update another newish feature in sysconf, stackaddr
* let sysconf accurately report # of cpus availableRich Felker2012-05-131-2/+10
| | | | | i've been trying out openmp and it seems like it won't be much use without this...
* fix broken sysconf when correct value is -1Rich Felker2012-04-211-1/+1
| | | | | this caused glib to try to allocate >2gb for getpwnam_r, and probably numerous other problems.
* sysconf support for dynamic limits (open files and processes)Rich Felker2012-03-221-2/+9
|
* sysconf for PTHREAD_KEYS_MAXRich Felker2011-10-031-1/+1
|
* in pathconf, -1, not 0, means unsupported.. syncio presumably works, too.Rich Felker2011-08-161-3/+3
|
* fix bogus pathconf result for file size bitsRich Felker2011-08-161-1/+1
|
* define MQ_PRIO_MAXRich Felker2011-06-071-1/+1
|
* better fix sysconf pthread stack minRich Felker2011-04-081-1/+1
|
* consistency with pthread stack min in limits.hRich Felker2011-04-081-1/+1
|
* fix sem_open and sem_close to obey posix semanticsRich Felker2011-03-101-5/+5
| | | | | | | | | multiple opens of the same named semaphore must return the same pointer, and only the last close can unmap it. thus the ugly global state keeping track of mappings. the maximum number of distinct named semaphores that can be opened is limited sufficiently small that the linear searches take trivial time, especially compared to the syscall overhead of these functions.
* put confstr.c with the other conf functionsRich Felker2011-02-141-0/+17
|
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-123-0/+263