summaryrefslogtreecommitdiff
path: root/include/unistd.h
AgeCommit message (Collapse)AuthorLines
2012-02-17add get_current_dir_name functionRich Felker-0/+1
2011-09-13fix various errors in function signatures/prototypes found by nszRich Felker-3/+3
2011-08-12implement forkallRich Felker-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.
2011-04-27correct variadic prototypes for execl* familyRich Felker-3/+3
the old versions worked, but conflicted with programs which declared their own prototypes and generated warnings with some versions of gcc.
2011-04-13fix prototypes/signature for setgroups, etc.Rich Felker-1/+1
2011-04-03prototype getdtablesize (nonstandard function)Rich Felker-0/+1
2011-04-03add setresuid/setresgid functions (nonstandard)Rich Felker-0/+2
2011-04-01remove obsolete and useless useconds_t typeRich Felker-3/+2
2011-02-27implement fexecveRich Felker-0/+1
2011-02-19prototypes for brk and sbrkRich Felker-0/+2
2011-02-15feature test support in unistd.hRich Felker-23/+27
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker-0/+464