Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2011-04-06 | consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix | Rich Felker | -1/+1 | |
2011-04-06 | move rsyscall out of pthread_create module | Rich Felker | -2/+1 | |
this is something of a tradeoff, as now set*id() functions, rather than pthread_create, are what pull in the code overhead for dealing with linux's refusal to implement proper POSIX thread-vs-process semantics. my motivations are: 1. it's cleaner this way, especially cleaner to optimize out the rsyscall locking overhead from pthread_create when it's not needed. 2. it's expected that only a tiny number of core system programs will ever use set*id() functions, whereas many programs may want to use threads, and making thread overhead tiny is an incentive for "light" programs to try threads. | ||||
2011-03-20 | global cleanup to use the new syscall interface | Rich Felker | -1/+1 | |
2011-02-13 | cleaning up syscalls in preparation for x86_64 port | Rich Felker | -2/+2 | |
- hide all the legacy xxxxxx32 name cruft in syscall.h so the actual source files can be clean and uniform across all archs. - cleanup llseek/lseek and mmap2/mmap handling for 32/64 bit systems - alternate implementation for nice if the target lacks nice syscall | ||||
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+9 | |