CVS commit: src/lib/lua
Module Name:src Committed By: plunky Date: Tue Oct 11 07:10:15 UTC 2011 Modified Files: src/lib/lua/gpio: Makefile Added Files: src/lib/lua: Makefile.inc Log Message: use WARNS?=4 for all Lua modules To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/lib/lua/Makefile.inc cvs rdiff -u -r1.2 -r1.3 src/lib/lua/gpio/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/etc/etc.x68k
Module Name:src Committed By: tsutsui Date: Tue Oct 11 12:08:20 UTC 2011 Modified Files: src/etc/etc.x68k: MAKEDEV.conf Log Message: Create sysmon(4) devices. Noticed by Y.Sugahara. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/etc/etc.x68k/MAKEDEV.conf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/pmap
Module Name:src Committed By: tsutsui Date: Tue Oct 11 12:25:56 UTC 2011 Modified Files: src/usr.bin/pmap: pmap.c Log Message: Consistently use "%#"PRIxVADDR to print VA, not "0x%#"PRIxVADDR or "0x%"PRIxVADDR etc. Noticed by Y.Sugahara. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/usr.bin/pmap/pmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/x68k/stand
Module Name:src Committed By: tsutsui Date: Tue Oct 11 13:07:06 UTC 2011 Modified Files: src/sys/arch/x68k/stand: Makefile.booters src/sys/arch/x68k/stand/boot_ufs: Makefile src/sys/arch/x68k/stand/boot_ustar: Makefile src/sys/arch/x68k/stand/libsa: Makefile Log Message: Fix "Error occurs, please reset" boot problem on X68030 + 060turbo in 060 mode, found on NetBSD booth at OSC 2011 Hiroshima: - use -D__daddr_t=int32_t for all bootloader files to avoid 64 bit ops in FFS - explicitly specify -m68020-60 to avoid 64 bit mulsl/mulul instructions which need to be handled by 060SP emulation but not available in 060turbo IPL ROM (LFS still has uint64_t members even with 32bit daddr_t) The problem was investigated (at least 1.6.2 bootloaders worked) by Yasushi Oshima at OSC booth, and fixes have been confirmed by Y.Sugahara on his 060turbo. Thanks everyone! Should also be pulled up to netbsd-5. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/arch/x68k/stand/Makefile.booters cvs rdiff -u -r1.25 -r1.26 src/sys/arch/x68k/stand/boot_ufs/Makefile cvs rdiff -u -r1.18 -r1.19 src/sys/arch/x68k/stand/boot_ustar/Makefile cvs rdiff -u -r1.26 -r1.27 src/sys/arch/x68k/stand/libsa/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: joerg Date: Tue Oct 11 13:54:01 UTC 2011 Modified Files: src/distrib/sets/lists/comp: mi src/external/bsd/llvm: Makefile.inc tablegen.mk src/external/bsd/llvm/bin: Makefile src/external/bsd/llvm/bin/llc: Makefile src/external/bsd/llvm/bin/lli: Makefile src/external/bsd/llvm/bin/llvm-link: Makefile src/external/bsd/llvm/bin/llvm-mc: Makefile src/external/bsd/llvm/bin/tblgen: Makefile src/external/bsd/llvm/include: Makefile src/external/bsd/llvm/lib: Makefile src/external/bsd/llvm/lib/libLLVMARMCodeGen: Makefile src/external/bsd/llvm/lib/libLLVMCodeGen: Makefile src/external/bsd/llvm/lib/libLLVMCore: Makefile src/external/bsd/llvm/lib/libLLVMMC: Makefile src/external/bsd/llvm/lib/libLLVMMipsMCTargetDesc: Makefile src/external/bsd/llvm/lib/libLLVMObject: Makefile src/external/bsd/llvm/lib/libLLVMSupport: Makefile src/external/bsd/llvm/lib/libLLVMX86CodeGen: Makefile src/external/bsd/llvm/lib/libclangAST: Makefile src/external/bsd/llvm/lib/libclangAnalysis: Makefile src/external/bsd/llvm/lib/libclangBasic: Makefile src/external/bsd/llvm/lib/libclangCodeGen: Makefile src/external/bsd/llvm/lib/libclangFrontend: Makefile src/external/bsd/llvm/lib/libclangSema: Makefile src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers: Makefile src/share/mk: bsd.own.mk src/sys/arch/i386/stand: Makefile.inc src/tools: Makefile src/tools/llvm-tblgen: Makefile Added Files: src/external/bsd/llvm/bin/clang-tblgen: Makefile src/external/bsd/llvm/bin/llvm-cov: Makefile src/external/bsd/llvm/bin/llvm-dwarfdump: Makefile src/external/bsd/llvm/bin/llvm-size: Makefile src/external/bsd/llvm/lib/libLLVMDebugInfo: Makefile src/external/bsd/llvm/lib/libLLVMTableGen: Makefile src/tools/llvm-clang-tblgen: Makefile src/tools/llvm-lib/libLLVMTableGen: Makefile Removed Files: src/external/bsd/llvm/bin/llvmc: Makefile src/external/bsd/llvm/lib/libLLVMCompilerDriver: Makefile Log Message: Update LLVM/Clang snapshot to r141658. This primarily fixes a regression preventing Qt4 from building. To generate a diff of this commit: cvs rdiff -u -r1.1690 -r1.1691 src/distrib/sets/lists/comp/mi cvs rdiff -u -r1.22 -r1.23 src/external/bsd/llvm/Makefile.inc cvs rdiff -u -r1.3 -r1.4 src/external/bsd/llvm/tablegen.mk cvs rdiff -u -r1.2 -r1.3 src/external/bsd/llvm/bin/Makefile cvs rdiff -u -r0 -r1.1 src/external/bsd/llvm/bin/clang-tblgen/Makefile cvs rdiff -u -r1.9 -r1.10 src/external/bsd/llvm/bin/llc/Makefile cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/bin/lli/Makefile cvs rdiff -u -r0 -r1.1 src/external/bsd/llvm/bin/llvm-cov/Makefile cvs rdiff -u -r0 -r1.1 src/external/bsd/llvm/bin/llvm-dwarfdump/Makefile cvs rdiff -u -r1.1 -r1.2 src/external/bsd/llvm/bin/llvm-link/Makefile cvs rdiff -u -r1.9 -r1.10 src/external/bsd/llvm/bin/llvm-mc/Makefile cvs rdiff -u -r0 -r1.1 src/external/bsd/llvm/bin/llvm-size/Makefile cvs rdiff -u -r1.1 -r0 src/external/bsd/llvm/bin/llvmc/Makefile cvs rdiff -u -r1.6 -r1.7 src/external/bsd/llvm/bin/tblgen/Makefile cvs rdiff -u -r1.3 -r1.4 src/external/bsd/llvm/include/Makefile cvs rdiff -u -r1.15 -r1.16 src/external/bsd/llvm/lib/Makefile cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libLLVMARMCodeGen/Makefile cvs rdiff -u -r1.7 -r1.8 src/external/bsd/llvm/lib/libLLVMCodeGen/Makefile cvs rdiff -u -r1.1 -r0 \ src/external/bsd/llvm/lib/libLLVMCompilerDriver/Makefile cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libLLVMCore/Makefile cvs rdiff -u -r0 -r1.1 src/external/bsd/llvm/lib/libLLVMDebugInfo/Makefile cvs rdiff -u -r1.7 -r1.8 src/external/bsd/llvm/lib/libLLVMMC/Makefile cvs rdiff -u -r1.1 -r1.2 \ src/external/bsd/llvm/lib/libLLVMMipsMCTargetDesc/Makefile cvs rdiff -u -r1.3 -r1.4 src/external/bsd/llvm/lib/libLLVMObject/Makefile cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libLLVMSupport/Makefile cvs rdiff -u -r0 -r1.1 src/external/bsd/llvm/lib/libLLVMTableGen/Makefile cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libLLVMX86CodeGen/Makefile cvs rdiff -u -r1.2 -r1.3 src/external/bsd/llvm/lib/libclangAST/Makefile cvs rdiff -u -r1.3 -r1.4 src/external/bsd/llvm/lib/libclangAnalysis/Makefile cvs rdiff -u -r1.2 -r1.3 src/external/bsd/llvm/lib/libclangBasic/Makefile cvs rdiff -u -r1.2 -r1.3 src/external/bsd/llvm/lib/libclangCodeGen/Makefile cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libclangFrontend/Makefile cvs rdiff -u -r1.4 -r1.5 src/external/bsd/llvm/lib/libclangSema/Makefile cvs rdiff -u -r1.7 -r1.8 \ src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers/Makefile cvs rdiff -u -r1.683 -r1.684 src/share/mk/bsd.own.mk cvs rdiff -u -r1.7 -r1.8 src/sys/arch/i386/stand/Makefile.inc cvs rdiff -u -r1.148 -r1.149 src/tools/Makefile cvs rdiff -u
CVS commit: src/crypto/dist/ipsec-tools/src/racoon
Module Name:src Committed By: tteras Date: Tue Oct 11 14:37:17 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: isakmp.c Log Message: >From Wolfgang Schmieder : setup phase1 port properly. To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 src/crypto/dist/ipsec-tools/src/racoon/isakmp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/dist/ipsec-tools/src/racoon
Module Name:src Committed By: tteras Date: Tue Oct 11 14:50:15 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: isakmp.c Log Message: >From Rainer Weikusat : Release unused phase2 of passive remotes after acquire. To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 src/crypto/dist/ipsec-tools/src/racoon/isakmp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/dist/gdb
Module Name:src Committed By: christos Date: Tue Oct 11 15:10:17 UTC 2011 Modified Files: src/external/gpl3/gdb/dist/gdb: ui-file.c Log Message: fix some empty bodies. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl3/gdb/dist/gdb/ui-file.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/dist/bfd
Module Name:src Committed By: christos Date: Tue Oct 11 15:12:00 UTC 2011 Modified Files: src/external/gpl3/gdb/dist/bfd: elf32-i386.c Log Message: don't forget to subtract the offset; found by clang -Warray-bounds To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl3/gdb/dist/bfd/elf32-i386.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/dist/bfd
Module Name:src Committed By: joerg Date: Tue Oct 11 15:13:08 UTC 2011 Modified Files: src/external/gpl3/gdb/dist/bfd: bfdio.c Log Message: Fix memset usage. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl3/gdb/dist/bfd/bfdio.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb
Module Name:src Committed By: joerg Date: Tue Oct 11 15:18:09 UTC 2011 Modified Files: src/external/gpl3/gdb: Makefile.inc Log Message: Disable format string validation with clang, it doesn't like gettext too much. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/i2c
Module Name:src Committed By: macallan Date: Tue Oct 11 15:19:09 UTC 2011 Modified Files: src/sys/dev/i2c: i2c.c Log Message: remove spurious warning about duplicate devices when using info from MD code ( like OpenFirmware ) ok jmcneill To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/dev/i2c/i2c.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/bin/sh
Module Name:src Committed By: christos Date: Tue Oct 11 15:27:12 UTC 2011 Modified Files: src/bin/sh: miscbltin.c Log Message: print the flag too next to the units like bash does. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/bin/sh/miscbltin.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man4
Module Name:src Committed By: njoly Date: Tue Oct 11 17:53:28 UTC 2011 Modified Files: src/share/man/man4: sdtemp.4 Log Message: Do not use sdtemp0 for all addresses in SYNOPSIS, switch to sdtemp* instead. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/share/man/man4/sdtemp.4 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/mdocml/dist
Module Name:src Committed By: joerg Date: Tue Oct 11 19:09:46 UTC 2011 Update of /cvsroot/src/external/bsd/mdocml/dist In directory ivanova.netbsd.org:/tmp/cvs-serv9293 Log Message: Import mdocml 1.12.0: - Support to output HTML fragments - Initial support for mdoc->man translation - Initial eqn support - preconv / apropos / demandoc (not hooked up) - Various bugfixes Status: Vendor Tag: KRISTAPS Release Tags: mdocml-1-12-0 U src/external/bsd/mdocml/dist/Makefile N src/external/bsd/mdocml/dist/apropos.1 N src/external/bsd/mdocml/dist/apropos.c U src/external/bsd/mdocml/dist/arch.c U src/external/bsd/mdocml/dist/arch.in U src/external/bsd/mdocml/dist/att.c U src/external/bsd/mdocml/dist/att.in U src/external/bsd/mdocml/dist/chars.c U src/external/bsd/mdocml/dist/chars.in N src/external/bsd/mdocml/dist/compat_getsubopt.c N src/external/bsd/mdocml/dist/compat_strlcat.c N src/external/bsd/mdocml/dist/compat_strlcpy.c U src/external/bsd/mdocml/dist/config.h.post U src/external/bsd/mdocml/dist/config.h.pre N src/external/bsd/mdocml/dist/demandoc.1 N src/external/bsd/mdocml/dist/demandoc.c U src/external/bsd/mdocml/dist/eqn.7 U src/external/bsd/mdocml/dist/eqn.c N src/external/bsd/mdocml/dist/eqn_html.c N src/external/bsd/mdocml/dist/eqn_term.c U src/external/bsd/mdocml/dist/example.style.css U src/external/bsd/mdocml/dist/external.png.uu U src/external/bsd/mdocml/dist/html.c U src/external/bsd/mdocml/dist/html.h U src/external/bsd/mdocml/dist/lib.c C src/external/bsd/mdocml/dist/lib.in U src/external/bsd/mdocml/dist/libman.h U src/external/bsd/mdocml/dist/libmandoc.h U src/external/bsd/mdocml/dist/libmdoc.h U src/external/bsd/mdocml/dist/libroff.h U src/external/bsd/mdocml/dist/main.c U src/external/bsd/mdocml/dist/main.h U src/external/bsd/mdocml/dist/man.7 U src/external/bsd/mdocml/dist/man.c U src/external/bsd/mdocml/dist/man.h U src/external/bsd/mdocml/dist/man_hash.c U src/external/bsd/mdocml/dist/man_html.c U src/external/bsd/mdocml/dist/man_macro.c C src/external/bsd/mdocml/dist/man_term.c U src/external/bsd/mdocml/dist/man_validate.c U src/external/bsd/mdocml/dist/mandoc.1 U src/external/bsd/mdocml/dist/mandoc.3 U src/external/bsd/mdocml/dist/mandoc.c U src/external/bsd/mdocml/dist/mandoc.h U src/external/bsd/mdocml/dist/mandoc_char.7 N src/external/bsd/mdocml/dist/mandocdb.8 N src/external/bsd/mdocml/dist/mandocdb.c U src/external/bsd/mdocml/dist/mdoc.7 U src/external/bsd/mdocml/dist/mdoc.c U src/external/bsd/mdocml/dist/mdoc.h C src/external/bsd/mdocml/dist/mdoc_argv.c U src/external/bsd/mdocml/dist/mdoc_hash.c U src/external/bsd/mdocml/dist/mdoc_html.c U src/external/bsd/mdocml/dist/mdoc_macro.c N src/external/bsd/mdocml/dist/mdoc_man.c C src/external/bsd/mdocml/dist/mdoc_term.c C src/external/bsd/mdocml/dist/mdoc_validate.c U src/external/bsd/mdocml/dist/msec.c U src/external/bsd/mdocml/dist/msec.in U src/external/bsd/mdocml/dist/out.c U src/external/bsd/mdocml/dist/out.h N src/external/bsd/mdocml/dist/preconv.1 N src/external/bsd/mdocml/dist/preconv.c N src/external/bsd/mdocml/dist/predefs.in C src/external/bsd/mdocml/dist/read.c U src/external/bsd/mdocml/dist/roff.7 C src/external/bsd/mdocml/dist/roff.c U src/external/bsd/mdocml/dist/st.c U src/external/bsd/mdocml/dist/st.in U src/external/bsd/mdocml/dist/tbl.7 C src/external/bsd/mdocml/dist/tbl.c U src/external/bsd/mdocml/dist/tbl_data.c U src/external/bsd/mdocml/dist/tbl_html.c C src/external/bsd/mdocml/dist/tbl_layout.c C src/external/bsd/mdocml/dist/tbl_opts.c U src/external/bsd/mdocml/dist/tbl_term.c U src/external/bsd/mdocml/dist/term.c U src/external/bsd/mdocml/dist/term.h U src/external/bsd/mdocml/dist/term_ascii.c U src/external/bsd/mdocml/dist/term_ps.c N src/external/bsd/mdocml/dist/test-getsubopt.c N src/external/bsd/mdocml/dist/test-mmap.c U src/external/bsd/mdocml/dist/test-strlcat.c U src/external/bsd/mdocml/dist/test-strlcpy.c N src/external/bsd/mdocml/dist/test-strptime.c U src/external/bsd/mdocml/dist/tree.c U src/external/bsd/mdocml/dist/vol.c U src/external/bsd/mdocml/dist/vol.in 10 conflicts created by this import. Use the following command to help the merge: cvs checkout -jKRISTAPS:yesterday -jKRISTAPS src/external/bsd/mdocml/dist
CVS commit: src/external/bsd/mdocml/dist
Module Name:src Committed By: joerg Date: Tue Oct 11 19:12:13 UTC 2011 Modified Files: src/external/bsd/mdocml/dist: lib.in man_term.c mdoc_argv.c mdoc_term.c mdoc_validate.c read.c roff.c tbl.c tbl_layout.c tbl_opts.c Removed Files: src/external/bsd/mdocml/dist: compat.c mandoc-db.1 mandoc-db.c Log Message: Merge changes for mdocml-1.12.0. To generate a diff of this commit: cvs rdiff -u -r1.1.1.2 -r0 src/external/bsd/mdocml/dist/compat.c cvs rdiff -u -r1.4 -r1.5 src/external/bsd/mdocml/dist/lib.in \ src/external/bsd/mdocml/dist/tbl_layout.c cvs rdiff -u -r1.7 -r1.8 src/external/bsd/mdocml/dist/man_term.c \ src/external/bsd/mdocml/dist/mdoc_term.c cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/mdocml/dist/mandoc-db.1 \ src/external/bsd/mdocml/dist/mandoc-db.c cvs rdiff -u -r1.2 -r1.3 src/external/bsd/mdocml/dist/mdoc_argv.c \ src/external/bsd/mdocml/dist/mdoc_validate.c \ src/external/bsd/mdocml/dist/read.c src/external/bsd/mdocml/dist/roff.c cvs rdiff -u -r1.3 -r1.4 src/external/bsd/mdocml/dist/tbl.c \ src/external/bsd/mdocml/dist/tbl_opts.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: joerg Date: Tue Oct 11 19:20:14 UTC 2011 Modified Files: src/distrib/sets/lists/text: mi src/external/bsd/mdocml/bin/mandoc: Makefile src/external/bsd/mdocml/lib/libmandoc: Makefile src/external/bsd/mdocml/man: Makefile Log Message: Update build system for mdocml 1.12.0. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/distrib/sets/lists/text/mi cvs rdiff -u -r1.5 -r1.6 src/external/bsd/mdocml/bin/mandoc/Makefile cvs rdiff -u -r1.3 -r1.4 src/external/bsd/mdocml/lib/libmandoc/Makefile cvs rdiff -u -r1.6 -r1.7 src/external/bsd/mdocml/man/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/getent
Module Name:src Committed By: christos Date: Tue Oct 11 19:24:43 UTC 2011 Modified Files: src/usr.bin/getent: getent.c Log Message: fix usage formatting. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/usr.bin/getent/getent.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/getent
Module Name:src Committed By: christos Date: Tue Oct 11 19:25:07 UTC 2011 Modified Files: src/usr.bin/getent: Makefile getent.1 Log Message: make getcap a link to getent, since many of the databases we use are of the "cap" format. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/usr.bin/getent/Makefile cvs rdiff -u -r1.21 -r1.22 src/usr.bin/getent/getent.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists
Module Name:src Committed By: christos Date: Tue Oct 11 19:34:39 UTC 2011 Modified Files: src/distrib/sets/lists/base: mi src/distrib/sets/lists/man: mi Log Message: add getcap To generate a diff of this commit: cvs rdiff -u -r1.964 -r1.965 src/distrib/sets/lists/base/mi cvs rdiff -u -r1.1347 -r1.1348 src/distrib/sets/lists/man/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/getent
Module Name:src Committed By: wiz Date: Tue Oct 11 20:39:40 UTC 2011 Modified Files: src/usr.bin/getent: getent.1 Log Message: More standard Dt/Nm. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/usr.bin/getent/getent.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/lib
Module Name:src Committed By: christos Date: Tue Oct 11 23:04:13 UTC 2011 Added Files: src/external/gpl3/gdb/lib/libbfd/arch/m68k: bfd-in3.h bfd.h bfd_stdint.h bfdver.h config.h defs.mk targmatch.h src/external/gpl3/gdb/lib/libdecnumber/arch/m68k: config.h defs.mk gstdint.h src/external/gpl3/gdb/lib/libgdb/arch/m68k: config.h defs.mk init.c observer.h observer.inc version.c xml-builtin.c src/external/gpl3/gdb/lib/libiberty/arch/m68k: config.h defs.mk src/external/gpl3/gdb/lib/libopcodes/arch/m68k: config.h defs.mk src/external/gpl3/gdb/lib/libreadline/arch/m68k: config.h defs.mk Log Message: mknative m68k To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/external/gpl3/gdb/lib/libbfd/arch/m68k/bfd-in3.h \ src/external/gpl3/gdb/lib/libbfd/arch/m68k/bfd.h \ src/external/gpl3/gdb/lib/libbfd/arch/m68k/bfd_stdint.h \ src/external/gpl3/gdb/lib/libbfd/arch/m68k/bfdver.h \ src/external/gpl3/gdb/lib/libbfd/arch/m68k/config.h \ src/external/gpl3/gdb/lib/libbfd/arch/m68k/defs.mk \ src/external/gpl3/gdb/lib/libbfd/arch/m68k/targmatch.h cvs rdiff -u -r0 -r1.1 \ src/external/gpl3/gdb/lib/libdecnumber/arch/m68k/config.h \ src/external/gpl3/gdb/lib/libdecnumber/arch/m68k/defs.mk \ src/external/gpl3/gdb/lib/libdecnumber/arch/m68k/gstdint.h cvs rdiff -u -r0 -r1.1 src/external/gpl3/gdb/lib/libgdb/arch/m68k/config.h \ src/external/gpl3/gdb/lib/libgdb/arch/m68k/defs.mk \ src/external/gpl3/gdb/lib/libgdb/arch/m68k/init.c \ src/external/gpl3/gdb/lib/libgdb/arch/m68k/observer.h \ src/external/gpl3/gdb/lib/libgdb/arch/m68k/observer.inc \ src/external/gpl3/gdb/lib/libgdb/arch/m68k/version.c \ src/external/gpl3/gdb/lib/libgdb/arch/m68k/xml-builtin.c cvs rdiff -u -r0 -r1.1 src/external/gpl3/gdb/lib/libiberty/arch/m68k/config.h \ src/external/gpl3/gdb/lib/libiberty/arch/m68k/defs.mk cvs rdiff -u -r0 -r1.1 \ src/external/gpl3/gdb/lib/libopcodes/arch/m68k/config.h \ src/external/gpl3/gdb/lib/libopcodes/arch/m68k/defs.mk cvs rdiff -u -r0 -r1.1 \ src/external/gpl3/gdb/lib/libreadline/arch/m68k/config.h \ src/external/gpl3/gdb/lib/libreadline/arch/m68k/defs.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/dist/gdb
Module Name:src Committed By: christos Date: Tue Oct 11 23:04:21 UTC 2011 Modified Files: src/external/gpl3/gdb/dist/gdb: m68kbsd-nat.c Log Message: make this compile. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/m68kbsd-nat.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: dholland Date: Tue Oct 11 23:04:22 UTC 2011 Modified Files: src/distrib/sets/lists/tests: mi src/tests/lib/libc/regex: Makefile t_regex.in Added Files: src/tests/lib/libc/regex/data: zero.in Removed Files: src/tests/lib/libc/regex/data: nul.in Log Message: Don't use 'nul' in filenames as windows will belch. (Caught by importing the tree into mercurial) To generate a diff of this commit: cvs rdiff -u -r1.399 -r1.400 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/regex/Makefile cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/regex/t_regex.in cvs rdiff -u -r1.1 -r0 src/tests/lib/libc/regex/data/nul.in cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/regex/data/zero.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gcc/dist/gcc
Module Name:src Committed By: dholland Date: Tue Oct 11 23:05:49 UTC 2011 Modified Files: src/external/gpl3/gcc/dist/gcc: gcc.c Log Message: Improve the output of gcc when a subprogram gets a signal. When OOMing it gets signal 9, which prints "Killed" -- that this is actually signal 9 and not a generic message is never clear and causes people to file PRs unnecessarily. Suggested by followups to PR 44096. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/gpl3/gcc/dist/gcc/gcc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/x86/x86
Module Name:src Committed By: yamt Date: Tue Oct 11 23:50:25 UTC 2011 Modified Files: src/sys/arch/x86/x86: pmap.c Log Message: sprinkle __read_mostly To generate a diff of this commit: cvs rdiff -u -r1.133 -r1.134 src/sys/arch/x86/x86/pmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/x86/x86
Module Name:src Committed By: yamt Date: Tue Oct 11 23:53:31 UTC 2011 Modified Files: src/sys/arch/x86/x86: pmap.c Log Message: add comments To generate a diff of this commit: cvs rdiff -u -r1.134 -r1.135 src/sys/arch/x86/x86/pmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev
Module Name:src Committed By: yamt Date: Tue Oct 11 23:55:30 UTC 2011 Modified Files: src/sys/dev: rnd.c Log Message: - make rnd.c mpsafe - malloc -> kmem_alloc To generate a diff of this commit: cvs rdiff -u -r1.81 -r1.82 src/sys/dev/rnd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/uvm
Module Name:src Committed By: yamt Date: Tue Oct 11 23:57:07 UTC 2011 Modified Files: src/sys/uvm: uvm_pager.c Log Message: comment To generate a diff of this commit: cvs rdiff -u -r1.106 -r1.107 src/sys/uvm/uvm_pager.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/uvm
Module Name:src Committed By: yamt Date: Tue Oct 11 23:57:50 UTC 2011 Modified Files: src/sys/uvm: uvm_amap.c Log Message: assertion To generate a diff of this commit: cvs rdiff -u -r1.103 -r1.104 src/sys/uvm/uvm_amap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/uvm
Module Name:src Committed By: yamt Date: Wed Oct 12 00:03:47 UTC 2011 Modified Files: src/sys/uvm: uvm_mmap.c Log Message: fix an integer promotion bug on 64 bit ports. (signed + unsigned = unsigned) To generate a diff of this commit: cvs rdiff -u -r1.137 -r1.138 src/sys/uvm/uvm_mmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/x86/x86
Module Name:src Committed By: yamt Date: Wed Oct 12 00:07:29 UTC 2011 Modified Files: src/sys/arch/x86/x86: nmi.c Log Message: - (ab)use pserialize instead of home-grown one - add an explicit membar To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/x86/x86/nmi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/examples/puffs/pgfs
Module Name:src Committed By: yamt Date: Wed Oct 12 01:05:00 UTC 2011 Added Files: src/share/examples/puffs/pgfs: Makefile README check.sql fix.sql mount.c newfs.sql pgfs.h pgfs_db.c pgfs_db.h pgfs_debug.c pgfs_debug.h pgfs_puffs.c pgfs_subs.c pgfs_subs.h pgfs_waitq.c pgfs_waitq.h Log Message: puffs file system server backed by postgresql To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/share/examples/puffs/pgfs/Makefile \ src/share/examples/puffs/pgfs/README \ src/share/examples/puffs/pgfs/check.sql \ src/share/examples/puffs/pgfs/fix.sql \ src/share/examples/puffs/pgfs/mount.c \ src/share/examples/puffs/pgfs/newfs.sql \ src/share/examples/puffs/pgfs/pgfs.h \ src/share/examples/puffs/pgfs/pgfs_db.c \ src/share/examples/puffs/pgfs/pgfs_db.h \ src/share/examples/puffs/pgfs/pgfs_debug.c \ src/share/examples/puffs/pgfs/pgfs_debug.h \ src/share/examples/puffs/pgfs/pgfs_puffs.c \ src/share/examples/puffs/pgfs/pgfs_subs.c \ src/share/examples/puffs/pgfs/pgfs_subs.h \ src/share/examples/puffs/pgfs/pgfs_waitq.c \ src/share/examples/puffs/pgfs/pgfs_waitq.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/bin
Module Name:src Committed By: mrg Date: Wed Oct 12 03:57:45 UTC 2011 Modified Files: src/external/gpl3/gdb/bin/gdb: Makefile src/external/gpl3/gdb/bin/gdbtui: Makefile Log Message: fix the paths to libsim. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gdb/bin/gdb/Makefile cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/bin/gdbtui/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/comp
Module Name:src Committed By: mrg Date: Wed Oct 12 04:17:34 UTC 2011 Modified Files: src/distrib/sets/lists/comp: ad.powerpc Log Message: psim builds on powerpc with gdb7. To generate a diff of this commit: cvs rdiff -u -r1.57 -r1.58 src/distrib/sets/lists/comp/ad.powerpc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.