.. |
mips
|
6315004f61
initial version of mips (o32) port, based on work by Richard Pennington (rdp)
|
12 năm trước cách đây |
_exit.c
|
0c05bd3a9c
further use of _Noreturn, for non-plain-C functions
|
12 năm trước cách đây |
access.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
acct.c
|
c983e6415a
fix some indention-with-spaces that crept in
|
12 năm trước cách đây |
alarm.c
|
e241896cd5
avoid deprecated (by linux) alarm syscall; use setitimer instead
|
13 năm trước cách đây |
chdir.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
chown.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
close.c
|
82dc1e2e78
fix handling of EINTR during close()
|
12 năm trước cách đây |
ctermid.c
|
b6218764eb
fix bogus lazy allocation in ctermid and missing malloc failure check
|
11 năm trước cách đây |
dup.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
dup2.c
|
f9a6372a98
workaround bug in linux dup2
|
14 năm trước cách đây |
dup3.c
|
892cafff66
greatly improve freopen behavior
|
12 năm trước cách đây |
faccessat.c
|
316d6741b6
fix missing return value warning in faccessat, minor cleanup
|
11 năm trước cách đây |
fchdir.c
|
9ca1f62b0c
make fchdir, fchmod, fchown, and fstat support O_PATH file descriptors
|
11 năm trước cách đây |
fchown.c
|
9ca1f62b0c
make fchdir, fchmod, fchown, and fstat support O_PATH file descriptors
|
11 năm trước cách đây |
fchownat.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
fdatasync.c
|
ca1773d864
fix dummied-out fdatasync
|
13 năm trước cách đây |
fsync.c
|
ee1f69a360
fix dummied-out fsync
|
13 năm trước cách đây |
ftruncate.c
|
0b6eb2dfb2
update syscalls with off_t arguments to handle argument alignment, if needed
|
13 năm trước cách đây |
getcwd.c
|
899b13cae7
support null buffer argument to getcwd, auto-allocating behavior
|
13 năm trước cách đây |
getegid.c
|
d878dcecca
omit errno update path for syscalls that cannot fail
|
14 năm trước cách đây |
geteuid.c
|
d878dcecca
omit errno update path for syscalls that cannot fail
|
14 năm trước cách đây |
getgid.c
|
d878dcecca
omit errno update path for syscalls that cannot fail
|
14 năm trước cách đây |
getgroups.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
gethostname.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
getlogin.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
getlogin_r.c
|
ee96c50d4b
fix mistake in length test in getlogin_r
|
13 năm trước cách đây |
getpgid.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
getpgrp.c
|
d878dcecca
omit errno update path for syscalls that cannot fail
|
14 năm trước cách đây |
getpid.c
|
d878dcecca
omit errno update path for syscalls that cannot fail
|
14 năm trước cách đây |
getppid.c
|
d878dcecca
omit errno update path for syscalls that cannot fail
|
14 năm trước cách đây |
getsid.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
getuid.c
|
d878dcecca
omit errno update path for syscalls that cannot fail
|
14 năm trước cách đây |
isatty.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
lchown.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
link.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
linkat.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
lseek.c
|
c2cd25bff8
consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
|
14 năm trước cách đây |
nice.c
|
c2cd25bff8
consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
|
14 năm trước cách đây |
pause.c
|
feee98903c
overhaul pthread cancellation
|
14 năm trước cách đây |
pipe.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
pipe2.c
|
ae7399bfd8
in pipe2, use pipe() rather than __syscall(SYS_pipe, ...) for fallback
|
12 năm trước cách đây |
pread.c
|
0b6eb2dfb2
update syscalls with off_t arguments to handle argument alignment, if needed
|
13 năm trước cách đây |
preadv.c
|
2416c63b81
fix up lfs64 junk for preadv/pwritev
|
12 năm trước cách đây |
pwrite.c
|
0b6eb2dfb2
update syscalls with off_t arguments to handle argument alignment, if needed
|
13 năm trước cách đây |
pwritev.c
|
2416c63b81
fix up lfs64 junk for preadv/pwritev
|
12 năm trước cách đây |
read.c
|
feee98903c
overhaul pthread cancellation
|
14 năm trước cách đây |
readlink.c
|
400c5e5c83
use restrict everywhere it's required by c99 and/or posix 2008
|
12 năm trước cách đây |
readlinkat.c
|
400c5e5c83
use restrict everywhere it's required by c99 and/or posix 2008
|
12 năm trước cách đây |
readv.c
|
feee98903c
overhaul pthread cancellation
|
14 năm trước cách đây |
renameat.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
rmdir.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
setegid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
seteuid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
setgid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
setpgid.c
|
fd142e5ec4
cleanup various minor issues reported by nsz
|
13 năm trước cách đây |
setpgrp.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
setregid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
setresgid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
setresuid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
setreuid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
setsid.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
setuid.c
|
acb0480662
new attempt at making set*id() safe and robust
|
13 năm trước cách đây |
setxid.c
|
544ee752cd
fix some bugs in setxid and update setrlimit to use __synccall
|
13 năm trước cách đây |
sleep.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
symlink.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
symlinkat.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
sync.c
|
eb0e8fa0b1
debloat: use __syscall instead of syscall where possible
|
14 năm trước cách đây |
tcgetpgrp.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
tcsetpgrp.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
truncate.c
|
0b6eb2dfb2
update syscalls with off_t arguments to handle argument alignment, if needed
|
13 năm trước cách đây |
ttyname.c
|
0b44a0315b
initial check-in, version 0.5.0
|
14 năm trước cách đây |
ttyname_r.c
|
c8c0844f7f
debloat code that depends on /proc/self/fd/%d with shared function
|
11 năm trước cách đây |
ualarm.c
|
3910e93340
make ualarm actually work (obsolete function removed from SUS)
|
14 năm trước cách đây |
unlink.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
unlinkat.c
|
aa398f56fa
global cleanup to use the new syscall interface
|
14 năm trước cách đây |
usleep.c
|
5243e5f160
remove obsolete and useless useconds_t type
|
14 năm trước cách đây |
write.c
|
feee98903c
overhaul pthread cancellation
|
14 năm trước cách đây |
writev.c
|
feee98903c
overhaul pthread cancellation
|
14 năm trước cách đây |