summaryrefslogtreecommitdiff
path: root/src/misc
AgeCommit message (Expand)AuthorLines
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
2012-06-20fix ptsname_r to conform to the upcoming posix requirementsRich Felker-4/+13
2012-05-06add isastream (obsolete STREAMS junk)Rich Felker-0/+7
2012-05-03implement stub versions of sched_*Rich Felker-10/+0
2012-04-24ditch the priority inheritance locks; use malloc's version of lockRich Felker-9/+9
2012-04-22implement getusershell, etc. legacy functionsRich Felker-0/+33
2012-04-22add getresuid and getresgid syscall wrappersRich Felker-0/+16
2012-04-16wordexp must set the we_offs entries of we_wordv to null pointersRich Felker-0/+4
2012-04-16fix crash in wordfree if we_offs is not initialized by the callerRich Felker-0/+2
2012-03-01implement a64l and l64a (legacy xsi stuff)Rich Felker-0/+26
2012-02-23fix (hopefully) PTRACE_TRACEME (command 0) argument handlingRich Felker-2/+2
2012-02-17fix get_current_dir_name behaviorRich Felker-2/+6
2012-02-17add get_current_dir_name functionRich Felker-0/+12
2012-01-24add legacy futimes and lutimes functionsRich Felker-0/+26
2012-01-20use prlimit syscall for getrlimit/setrlimitRich Felker-4/+14
2012-01-20add prlimit syscall wrapperRich Felker-0/+8
2012-01-18alias basename to glibc name for it, to meet abi goalsRich Felker-0/+3
2011-09-16fix ptrace (maybe)Rich Felker-1/+8
2011-09-15implement ptrace syscall wrapper (untested)Rich Felker-0/+18
2011-09-13remove some stray trailing space charactersRich Felker-1/+1
2011-07-30fix some bugs in setxid and update setrlimit to use __synccallRich Felker-2/+27
2011-07-22check for fd exhaustion in forkptyRich Felker-2/+15
2011-07-22incorrect check for open failure in openpty functionRich Felker-1/+1
2011-06-25wordexp cannot use we_offs unless WRDE_DOOFFS flag is setRich Felker-1/+2
2011-06-18fix memory leak on failure in realpathRich Felker-4/+4
2011-05-29add useless, obsolescent function ulimitRich Felker-0/+19
2011-04-20properly create new session/controlling terminal in forkptyRich Felker-1/+4
2011-04-20implement (nonstandard) forkptyRich Felker-0/+22
2011-04-19block cancellation in wordexp, handle more errorsRich Felker-2/+17
2011-04-19avoid malloc of potentially-large string in wordexpRich Felker-10/+28
2011-04-18protect ftw and nftw against cancellationRich Felker-1/+6
2011-04-18protect syslog against cancellationRich Felker-5/+19
2011-04-17minimal realpath implementation using /procRich Felker-0/+43
2011-04-15remove stupid debug code in wordexpRich Felker-1/+0