• R/O
  • HTTP
  • SSH
  • HTTPS

uClibc: List of commits


RSS
Rev. Time Author
0a043c3 2012-06-15 21:00:40 Peter S. Mazinger

vfork: make all archs consistent

__vfork is hidden.
__GI_vfork is strong (not weak as it was).
vfork is weak.
e1 can use the generic version.

Note: libc_hidden_def(x) has different meaning in .c and .S files.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

917176e 2012-06-15 21:00:40 Peter S. Mazinger

utime[s]: avoid circular dependency

utime.c: fix a cast, tv_sec is of type time_t
Add stub for utimes.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

4dcfe3b 2012-06-15 21:00:40 Peter S. Mazinger

ustat.c: always_inline syscall

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

b101909 2012-06-15 21:00:39 Peter S. Mazinger

uname.c,unlink.c: whitespace only

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

5046a84 2012-06-15 21:00:39 Peter S. Mazinger

umount: make umount2 depend on UCLIBC_LINUX_SPECIFIC

Add hidden umount2 to be used in umount eventually.
Rework umount to either use directly umount2 syscall or function.

docs say, that mount and umount are also Linux specific

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

c6dcc66 2012-06-15 21:00:39 Peter S. Mazinger

mount.c: whitespace only

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

84dd152 2012-06-15 21:00:39 Peter S. Mazinger

times.c: whitespace only

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

1fcbd17 2012-06-15 21:00:39 Peter S. Mazinger

umask.c: umask always succeeds, use _syscall_noerr1

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

78b0d99 2012-06-15 21:00:39 Peter S. Mazinger

time.c: move included header for fallback case

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

34c0112 2012-06-15 21:00:39 Peter S. Mazinger

gettimeofday.c: use the same type as in header

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

823b22d 2012-06-15 21:00:39 Peter S. Mazinger

provide sysinfo stub

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

2dfcffb 2012-06-15 21:00:39 Peter S. Mazinger

syscalls.h: remove unused headers

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

2668ea2 2012-06-15 21:00:39 Peter S. Mazinger

nanosleep.c, fsync.c: do not inline syscall, it is used twice

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

d5f8c6d 2012-06-15 21:00:39 Peter S. Mazinger

brk.c: remove libc_hidden_proto, always_inline syscall

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

29f2e0c 2012-06-15 21:00:39 Peter S. Mazinger

sigsuspend.c: make build fail, if rt_sigsuspend is not available and NPTL is defined

Rework a bit for less code.
always_inline syscall used only once, do not inline syscall used twice.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

c292bae 2012-06-15 21:00:39 Peter S. Mazinger

symlink.c: Compile only if syscall is available

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

7dc2d2d 2012-06-15 21:00:39 Peter S. Mazinger

update acct.h

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

6b1fe09 2012-06-15 21:00:39 Peter S. Mazinger

sync.c: simplify code

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

1b11d19 2012-06-15 21:00:39 Peter S. Mazinger

provide stime and settimeofday functions if at least one of the syscalls is available

Add hidden stime for possible use in settimeofday.
Add stubs for both functions if none of the syscalls is present.
Avoid circular dependency.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

a30f4f7 2012-06-15 21:00:38 Peter S. Mazinger

setuid.c: always_inline syscall

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

a55acdf 2012-06-15 21:00:38 Peter S. Mazinger

setsid.c: whitespace only

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

39e02af 2012-06-15 21:00:38 Peter S. Mazinger

setpgrp.c: remove unneeded header

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

0a18b65 2012-06-15 21:00:38 Peter S. Mazinger

setgroups.c: move around some headers, always_inline syscall

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

4e17195 2012-06-15 21:00:38 Peter S. Mazinger

pause.c: no need for __UCLIBC_HIDE_DEPRECATED__, the code does not use old functions

Remove syscall.h as well, not needed anymore.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

6507c3b 2012-06-15 21:00:38 Peter S. Mazinger

correct sendfile for 32/64 bit archs

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

f95e1b4 2012-06-15 21:00:38 Peter S. Mazinger

prctl.c: no need to include stdarg.h and extern

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

87be6ca 2012-06-15 21:00:38 Peter S. Mazinger

sched_getaffinity.c: mark syscall as __always_inline

Reorganize a bit.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

29ba11d 2012-06-15 21:00:38 Peter S. Mazinger

sched_setaffinity.c: make use of the syscall

Fix arg type (const missing).
Reorganize a bit.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

af58093 2012-06-15 21:00:38 Peter S. Mazinger

rename.c: simplify code, include only necessary headers

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

7c966f5 2012-06-15 21:00:38 Peter S. Mazinger

pivot_root.c: move prototype into guard

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>

Show on old repository browser