• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

RSS
Rev. Time Author
ddbb03e 2018-05-05 23:39:13 Waldemar Brodkorb

librt: clock_nanosleep could be even used without threads

68628fe 2018-05-02 03:07:43 Waldemar Brodkorb

librt: declare clock_nanosleep not only for NPTL

Reported-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>

92d250d 2018-04-30 02:34:11 Waldemar Brodkorb

Revert "ldconfig: add glibc compatibility fix"

This reverts commit 2a3bb4daf5778c5875674cd26a3c75b3d460a042.

This is breaking ld.so.cache usage. Seen on Gentoo/amd64.

Reported-by: "Anthony G. Basile" <basile@freeharbor.net>

7484224 2018-04-29 03:50:38 Waldemar Brodkorb

bump for release 1.0.30

3f100ed 2018-04-29 03:49:43 Waldemar Brodkorb

mention Tile architecture

14be079 2018-04-28 06:47:05 Waldemar Brodkorb

libdl: first execute all destructors, then munmap library

Fix problem which might exist since 2011. We need to execute
the destructors for all dependant libraries, before munmap the
shared libraries, otherwise running destructor of a dependent library
might cause a segfault, trying to access an already unmapped memory.

This fixes for example segfaults while running php -m with ldap
module.

Reported-By: Dave Flogeras <dflogeras2@gmail.com>
Tested-By: Dave Flogeras <dflogeras2@gmail.com>

132decd 2018-04-28 06:42:33 Dave Flogeras

libdl: calculate the length for second parameter of munmap.

Revert 35105679b9a900d58dadd0852e679c235f8176ba and add some debug
code.

04a676f 2018-04-23 03:01:57 Waldemar Brodkorb

linuxthreads: implement pthread_condattr_{s,g}etclock()

More applications are using pthread_condattr_setclock()/
pthread_condattr_getclock() in their code. Port these two
functions from NPTL over to be more compatible.

d86bd35 2018-04-22 20:14:00 Waldemar Brodkorb

libdl: end must be bigger than start

8d7723d 2018-04-22 19:09:42 Waldemar Brodkorb

libdl: remove gcc warnings

d89de5c 2018-04-22 19:09:37 Waldemar Brodkorb

libiconv: remove function, which is not available w/o libiconv a4 macros

3510567 2018-04-18 04:19:06 Waldemar Brodkorb

libdl: fix problem with unmapping

The munmap was still called with broken length, as sometimes
start was empty. This finally solves segfaults when running
php -m with ldap module activated.

eb560ac 2018-04-18 02:15:58 Waldemar Brodkorb

libdl: better checking and logging for ctors/dtors

744e199 2018-04-18 02:15:58 Waldemar Brodkorb

libdl: remove dead code

0c8cc6e 2018-04-18 02:15:58 Waldemar Brodkorb

libdl: remove LDSO_NO_CLEANUP

07dfe7c 2018-04-18 02:15:58 Waldemar Brodkorb

libdl: cleanup old inline changelog

aaf1b2f 2018-04-18 02:15:58 Waldemar Brodkorb

Revert "libdl: fix dlclose() issue"

This reverts commit bf4c2d242f587700e3eb2ffd5721ddaf3cdbc7e5.

343fb00 2018-04-18 02:14:00 Guo Ren

common/sendfile.c: bugfix can't support offset is NULL

In ltp testcase sendfile08.c, it use offset=NULL to test the api.

PATCH V2:
fixup the stupid missing check in the end. Sorry for lose test.

See "man sendfile" and it really support offset is NULL.

Signed-off-by: Guo Ren <ren_guo@c-sky.com>

2d8a38e 2018-04-18 02:13:53 Waldemar Brodkorb

Revert "common/sendfile.c: bugfix can't support offset is NULL"

This reverts commit b00fd230ed0b49b9f23d829ad5d09859f34bb754.

ad6c75c 2018-04-14 00:35:34 Guo Ren

lseek.c: bugfix ltp lseek01.c

Ref the implement from the glibc and high=0 seems so bad.

Signed-off-by: Guo Ren <ren_guo@c-sky.com>

b00fd23 2018-04-14 00:35:34 Guo Ren

common/sendfile.c: bugfix can't support offset is NULL

In ltp testcase sendfile08.c, it use offset=NULL to test the api.

See "man sendfile" and it really support offset is NULL.

Signed-off-by: Guo Ren <ren_guo@c-sky.com>

f42d18f 2018-04-14 00:35:34 Thomas Petazzoni

or1k: add F_{DUPFD_CLOEXEC, SETPIPE_SZ, GETPIPE_SZ}

Those definitions exist on all other architectures, but were not
present in or1k specific headers when or1k support was merged.

On the kernel side, their support is completely architecture
independent, so we just need those definitions to make those fcntl()
calls available on or1k.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

161d237 2018-04-02 22:41:25 Waldemar Brodkorb

use __NR_newfstatat only for modern Linux architectures

Otherwise it breaks mips64 n64.
Should be used for aarch64/tilegx only.

91e21d2 2018-03-23 03:14:01 Waldemar Brodkorb

hppa: fix runtime issues

Sync clone()/vfork() with GNU C Library.
Allow CFI and fix strsignal() / tcsetattr().

8be3a69 2018-03-16 04:39:56 Guo Ren

csky: support bsd-setjmp and bsd-_setjmp.

Signed-off-by: Guo Ren <ren_guo@c-sky.com>

bf4c2d2 2018-03-16 04:35:05 Waldemar Brodkorb

libdl: fix dlclose() issue

There is a patch included in https://bugs.busybox.net/show_bug.cgi?id=6158
from 2013, which was never applied.
This really fixes the php -m segfaults.

5bdc2b4 2018-03-14 13:32:07 Waldemar Brodkorb

Revert "Revert "libdl: fix size parameter when unmap library in dlclose""

This reverts commit 952bb00f0b2eb576b0bf48c4f87018429a42e28d.

And adds this fix for 64 Bit systems.
http://lists.busybox.net/pipermail/uclibc/2014-December/048737.html

490e84f 2018-03-13 04:11:14 Waldemar Brodkorb

tile: add basic support for tilegx

This adds basic support for tile architecture.
Only static binaries, no ld.so or threading support.
Tested with qemu-tilegx only.

6e62752 2018-03-10 03:14:40 Waldemar Brodkorb

sparc32: Add nop before __startcontext to stop unwinding

From glibc commit 9aa5c222b9e0409143410a02b6364a3b25dbf028
[BZ #22919]

01e9f2f 2018-03-06 04:29:56 Waldemar Brodkorb

utils: fix compile of msgfmt/msgmerge

The host utils are missing the dependencies, the target
utils need libiconv enabled.