Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | implement getusershell, etc. legacy functions | Rich Felker | 2012-04-22 | 1 | -0/+3 |
| | | | | | I actually wrote these a month ago but forgot to integrate them. ugly, probably-harmful-to-use functions, but some legacy apps want them... | ||||
* | getdtablesize is not standard; move it to its correct spot in unistd.h | Rich Felker | 2012-04-22 | 1 | -1/+1 |
| | |||||
* | add getresuid and getresgid syscall wrappers | Rich Felker | 2012-04-22 | 1 | -0/+2 |
| | |||||
* | legacy junk compatibility grab-bag | Rich Felker | 2012-04-18 | 1 | -0/+2 |
| | | | | | | - add the rest of the junk traditionally in sys/param.h - add prototypes for some nonstandard functions - add _GNU_SOURCE to their source files so the compiler can check proto | ||||
* | add get_current_dir_name function | Rich Felker | 2012-02-17 | 1 | -0/+1 |
| | |||||
* | fix various errors in function signatures/prototypes found by nsz | Rich Felker | 2011-09-13 | 1 | -3/+3 |
| | |||||
* | implement forkall | Rich Felker | 2011-08-12 | 1 | -0/+1 |
| | | | | | | | | | | | | this is a "nonstandard" function that was "rejected" by POSIX, but nonetheless had its behavior documented in the POSIX rationale for fork. it's present on solaris and possibly some other systems, and duplicates the whole calling process, not just a single thread. glibc does not have this function. it should not be used in programs intending to be portable, but may be useful for testing, checkpointing, etc. and it's an interesting (and quite small) example of the usefulness of the __synccall framework originally written to work around deficiencies in linux's setuid syscall. | ||||
* | correct variadic prototypes for execl* family | Rich Felker | 2011-04-27 | 1 | -3/+3 |
| | | | | | the old versions worked, but conflicted with programs which declared their own prototypes and generated warnings with some versions of gcc. | ||||
* | fix prototypes/signature for setgroups, etc. | Rich Felker | 2011-04-13 | 1 | -1/+1 |
| | |||||
* | prototype getdtablesize (nonstandard function) | Rich Felker | 2011-04-03 | 1 | -0/+1 |
| | |||||
* | add setresuid/setresgid functions (nonstandard) | Rich Felker | 2011-04-03 | 1 | -0/+2 |
| | |||||
* | remove obsolete and useless useconds_t type | Rich Felker | 2011-04-01 | 1 | -3/+2 |
| | |||||
* | implement fexecve | Rich Felker | 2011-02-27 | 1 | -0/+1 |
| | |||||
* | prototypes for brk and sbrk | Rich Felker | 2011-02-19 | 1 | -0/+2 |
| | |||||
* | feature test support in unistd.h | Rich Felker | 2011-02-15 | 1 | -23/+27 |
| | |||||
* | initial check-in, version 0.5.0 v0.5.0 | Rich Felker | 2011-02-12 | 1 | -0/+464 |