CVS commit: src/tests/lib/libc/gen

2024-06-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 29 06:58:23 UTC 2024 Modified Files: src/tests/lib/libc/gen: t_siginfo.c Log Message: t_siginfo: sigbus_adraln: Skip for vax According to "VAX Architecture Handbook", misaligned access does not trap, although it has performa

CVS commit: src/tests/lib/libc/gen

2024-06-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 29 06:58:23 UTC 2024 Modified Files: src/tests/lib/libc/gen: t_siginfo.c Log Message: t_siginfo: sigbus_adraln: Skip for vax According to "VAX Architecture Handbook", misaligned access does not trap, although it has performa

CVS commit: src/lib/libc/arch/vax/gen

2024-06-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 29 06:52:34 UTC 2024 Modified Files: src/lib/libc/arch/vax/gen: __longjmp14.c _setjmp.S Log Message: vax: {,_}longjmp(3): Return 1 if `val` == 0 Found by tests/lib/libc/setjmp/t_setjmp:{,_}longjmp_zero. To generate a diff

CVS commit: src/lib/libc/arch/vax/gen

2024-06-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 29 06:52:34 UTC 2024 Modified Files: src/lib/libc/arch/vax/gen: __longjmp14.c _setjmp.S Log Message: vax: {,_}longjmp(3): Return 1 if `val` == 0 Found by tests/lib/libc/setjmp/t_setjmp:{,_}longjmp_zero. To generate a diff

CVS commit: src/share/man/man4

2024-06-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 29 06:39:34 UTC 2024 Modified Files: src/share/man/man4: ddb.4 Log Message: ddb(4): vax: Clarify how to enter into DDB from console See gencnrint() and kdbrint(). // At last, I can activate DDB on SIMH ;) To generate a di

CVS commit: src/share/man/man4

2024-06-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jun 29 06:39:34 UTC 2024 Modified Files: src/share/man/man4: ddb.4 Log Message: ddb(4): vax: Clarify how to enter into DDB from console See gencnrint() and kdbrint(). // At last, I can activate DDB on SIMH ;) To generate a di

CVS commit: src/sys/sys

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sat Jun 29 03:01:29 UTC 2024 Modified Files: src/sys/sys: sdt.h Log Message: sys/sdt.h: Make SDT_PROBE* work as expressions. This way, they can be used inside other expressions with the comma operator, such as in the SET_ERROR

CVS commit: src/sys/sys

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sat Jun 29 03:01:29 UTC 2024 Modified Files: src/sys/sys: sdt.h Log Message: sys/sdt.h: Make SDT_PROBE* work as expressions. This way, they can be used inside other expressions with the comma operator, such as in the SET_ERROR

CVS commit: src/sys/net

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sat Jun 29 02:18:36 UTC 2024 Modified Files: src/sys/net: if_stats.c if_stats.h Log Message: if_stats(9): New dtrace probes on if_statinc/dec/add/sub. Note: This doesn't apply to if_statinc/dec/add/sub_ref, because we don't ha

CVS commit: src/sys/net

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sat Jun 29 02:18:36 UTC 2024 Modified Files: src/sys/net: if_stats.c if_stats.h Log Message: if_stats(9): New dtrace probes on if_statinc/dec/add/sub. Note: This doesn't apply to if_statinc/dec/add/sub_ref, because we don't ha

CVS commit: src/crypto/external/bsd/openssl/lib/libcrypto

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 21:59:18 UTC 2024 Modified Files: src/crypto/external/bsd/openssl/lib/libcrypto: Makefile Log Message: libcrypto: No need for ${.CURDIR}/ qualification in VERSION_MAP. PR lib/58376 To generate a diff of this commi

CVS commit: src/crypto/external/bsd/openssl/lib/libcrypto

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 21:59:18 UTC 2024 Modified Files: src/crypto/external/bsd/openssl/lib/libcrypto: Makefile Log Message: libcrypto: No need for ${.CURDIR}/ qualification in VERSION_MAP. PR lib/58376 To generate a diff of this commi

CVS commit: src/share/mk

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 21:58:24 UTC 2024 Modified Files: src/share/mk: bsd.README bsd.lib.mk Log Message: bsd.lib.mk: Resolve VERSION_MAP like a target prerequisite. Not sure what I did before to make ${${VERSION_MAP}:P} fail to work; can

CVS commit: src/share/mk

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 21:58:24 UTC 2024 Modified Files: src/share/mk: bsd.README bsd.lib.mk Log Message: bsd.lib.mk: Resolve VERSION_MAP like a target prerequisite. Not sure what I did before to make ${${VERSION_MAP}:P} fail to work; can

Re: CVS commit: src/share/mk

2024-06-28 Thread Roland Illig
Am 28.06.2024 um 22:45 schrieb Taylor R Campbell: > +# It is tempting to use the make :P modifier here so that you can just > +# write > +# > +#VERSION_MAP=foo.map > +# > +# instead of > +# > +#VERSION_MAP=${.CURDIR}/foo.map > +# > +# but it appears that :P works _only_ with literal

CVS commit: src/crypto/external/bsd/openssl/lib/libcrypto

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 21:15:55 UTC 2024 Modified Files: src/crypto/external/bsd/openssl/lib/libcrypto: Makefile Log Message: libcrypto: Use VERSION_MAP, not explicit -Wl,--version-script. Fixes dependencies as in PR lib/58376. To gener

CVS commit: src/crypto/external/bsd/openssl/lib/libcrypto

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 21:15:55 UTC 2024 Modified Files: src/crypto/external/bsd/openssl/lib/libcrypto: Makefile Log Message: libcrypto: Use VERSION_MAP, not explicit -Wl,--version-script. Fixes dependencies as in PR lib/58376. To gener

CVS commit: src/share/mk

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 20:45:26 UTC 2024 Modified Files: src/share/mk: bsd.README bsd.lib.mk Log Message: bsd.lib.mk: New variable VERSION_MAP. This updates LDFLAGS with the right -Wl,--version-script=... argument as well as DPADD so that

CVS commit: src/share/mk

2024-06-28 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Jun 28 20:45:26 UTC 2024 Modified Files: src/share/mk: bsd.README bsd.lib.mk Log Message: bsd.lib.mk: New variable VERSION_MAP. This updates LDFLAGS with the right -Wl,--version-script=... argument as well as DPADD so that

CVS commit: src/usr.bin/make

2024-06-28 Thread Roland Illig
Module Name:src Committed By: rillig Date: Fri Jun 28 15:20:57 UTC 2024 Modified Files: src/usr.bin/make: job.c job.h Log Message: make: reduce usage of the UNCONST hack To generate a diff of this commit: cvs rdiff -u -r1.477 -r1.478 src/usr.bin/make/job.c cvs rdiff -u -

CVS commit: src/usr.bin/make

2024-06-28 Thread Roland Illig
Module Name:src Committed By: rillig Date: Fri Jun 28 15:20:57 UTC 2024 Modified Files: src/usr.bin/make: job.c job.h Log Message: make: reduce usage of the UNCONST hack To generate a diff of this commit: cvs rdiff -u -r1.477 -r1.478 src/usr.bin/make/job.c cvs rdiff -u -

CVS commit: src/doc

2024-06-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Fri Jun 28 10:23:37 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Various changes for June. To generate a diff of this commit: cvs rdiff -u -r1.3067 -r1.3068 src/doc/CHANGES Please note that diffs are not public doma

CVS commit: src/doc

2024-06-28 Thread Nia Alarie
Module Name:src Committed By: nia Date: Fri Jun 28 10:23:37 UTC 2024 Modified Files: src/doc: CHANGES Log Message: doc: Various changes for June. To generate a diff of this commit: cvs rdiff -u -r1.3067 -r1.3068 src/doc/CHANGES Please note that diffs are not public doma