summaryrefslogtreecommitdiff
path: root/src/misc
AgeCommit message (Expand)AuthorLines
2014-08-08make endmntent function handle null argumentTimo Teräs-1/+1
2014-07-31implement ffsl and ffsll functionsRich Felker-0/+14
2014-07-19add issetugid function to check for elevated privilegeBrent Cook-0/+7
2014-07-17provide getauxval(AT_SECURE) even if it is missing from the aux vectorRich Felker-0/+1
2014-07-11implement the LOG_CONS option in syslogRich Felker-1/+9
2014-07-11suppress early syslog return when log socket cannot be openedRich Felker-4/+1
2014-07-11implement the LOG_PERROR option in syslogRich Felker-2/+4
2014-07-11fix the %m specifier in syslogClément Vasseur-0/+3
2014-06-21implement fmtmsg functionRich Felker-0/+90
2014-06-11support optional-argument extension to getopt via double-colonRich Felker-2/+5
2014-05-30fix for broken kernel side RLIM_INFINITY on mipsSzabolcs Nagy-2/+18
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker-1/+1
2014-04-07add getauxval functionRich Felker-0/+12
2014-03-18use syscall_arg_t for arguments in public syscall() functionRich Felker-7/+7
2014-03-17fix negated error codes from ptsname_rRich Felker-1/+1
2014-02-01fix nftw FTW_MOUNT flagRich Felker-2/+1
2013-12-13optimize get_current_dir_name to reduce stack bloatRich Felker-3/+1
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy-10/+3
2013-11-22fix and refactor child reaping logic in wordexpRich Felker-6/+16
2013-11-22fix fd leak and case where fd 1 is already closed in wordexpRich Felker-4/+4
2013-11-22fix resource exhaustion and zero-word cases in wordexpRich Felker-8/+18
2013-11-22improve robustness of wordexp and fix handling of 0-word caseRich Felker-11/+16
2013-08-31remove incorrect cancellation points from realpathRich Felker-4/+4
2013-08-31debloat realpath's allocation strategyRich Felker-12/+6
2013-08-31make realpath use O_PATH when opening the fileRich Felker-1/+1
2013-08-02debloat code that depends on /proc/self/fd/%d with shared functionRich Felker-1/+3
2013-04-05Add ABI compatability aliases.Isaac Dunham-0/+2
2013-04-01fix typo in setpriority syscall wrapperRich Felker-1/+1
2013-03-23fix multiple bugs in syslog interfacesRich Felker-24/+27
2012-12-07move new linux syscall wrapper functions to proper source dirRich Felker-16/+0
2012-12-07fix trailing whitespace issues that crept in here and thereRich Felker-2/+2
2012-12-06add arch_prctl syscall (amd64/x32 only)rofl0r-0/+9
2012-12-06add personality syscallrofl0r-0/+7
2012-09-30add getopt reset supportRich Felker-2/+18
2012-09-29fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker-1/+1
2012-09-29emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernelsRich Felker-2/+1
2012-09-26fix dirname to handle input of form "foo/" correctlyRich Felker-6/+5
2012-09-09add setdomainname syscall, fix getdomainname (previously a stub)Rich Felker-1/+17
2012-09-07cleanup src/linux and src/misc trees, etc.Rich Felker-2697/+158
2012-09-06fix constraint violation in ftwRich Felker-1/+4
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-2/+2
2012-08-30fix missing statics in crypt_sha256 codeRich Felker-3/+3
2012-08-29anti-DoS rounds count limits for blowfish and des cryptRich Felker-2/+2
2012-08-29limit sha512 rounds to similar runtime to sha256 limitRich Felker-1/+1
2012-08-29add sha256/sha512 cryptRich Felker-1/+700
2012-08-23optimize legacy ffs functionRich Felker-4/+2
2012-08-10add blowfish hash support to cryptRich Felker-8/+806
2012-08-09make crypt return an unmatchable hash rather than NULL on failureRich Felker-5/+2
2012-08-02fix missing static in getusershell (namespace pollution)Rich Felker-1/+1
2012-06-29replace old and ugly crypt implementationRich Felker-2574/+1055