daily CVS update output

2021-08-11 Thread NetBSD source update
Updating src tree: P src/distrib/sets/lists/tests/mi P src/external/bsd/openpam/dist/lib/libpam/pam_putenv.c P src/external/cddl/osnet/dev/fbt/x86/fbt_isa.c P src/external/mit/xorg/server/xorg-server/glamor/Makefile P src/external/mit/xorg/server/xorg-server/hw/xfree86/Xorg/Makefile P

Re: Problem with -fsanitize=leak and libpthread

2021-08-11 Thread RVP
On Tue, 10 Aug 2021, Thomas Klausner wrote: I was looking for memory leaks in a threaded program using -fsanitize=leak when I had a weird issue with pthread_join not working after pthread_cancel. So I wrote a small test program. When I compile this with leak detection, it doesn't even start:

Re: Problem with -fsanitize=leak and libpthread

2021-08-11 Thread Christos Zoulas
In article <20210810124709.vhixir5hl5g7l...@yt.nih.at>, Thomas Klausner wrote: >-=-=-=-=-=- > >Hi! > >I was looking for memory leaks in a threaded program using >-fsanitize=leak when I had a weird issue with pthread_join not working >after pthread_cancel. > >So I wrote a small test program. When

Re: SPI on RPI?

2021-08-11 Thread Michael van Elst
b...@anduin.eldar.org (Brad Spencer) writes: >I was wondering if anyone is using the built in spibus on a Raspberry PI >(any version) lately. It is possible that I have outdated dts files, >but I do not see the spibus device on my 9.x installs and was curious if >it shows up for anyone in 9.x or

SPI on RPI?

2021-08-11 Thread Brad Spencer
I was wondering if anyone is using the built in spibus on a Raspberry PI (any version) lately. It is possible that I have outdated dts files, but I do not see the spibus device on my 9.x installs and was curious if it shows up for anyone in 9.x or -current and if anyone is currently using it.

Re: Problem with -fsanitize=leak and libpthread

2021-08-11 Thread Thomas Klausner
On Wed, Aug 11, 2021 at 09:07:15AM -, Christos Zoulas wrote: > I used > cc -fsanitize=leak -pthread join.c -o join > and it worked Thanks, that does indeed work. Thomas