Searched hist:1.601 (Results 1 - 24 of 24) sorted by relevance
| /src/sys/arch/i386/i386/ | ||
| H A D | machdep.c | 1.601 Wed Mar 07 21:43:43 GMT 2007 thorpej branches: 1.601.2; 1.601.4; 1.601.6; TRUE -> true, FALSE -> false 1.601 Wed Mar 07 21:43:43 GMT 2007 thorpej branches: 1.601.2; 1.601.4; 1.601.6; TRUE -> true, FALSE -> false 1.601 Wed Mar 07 21:43:43 GMT 2007 thorpej branches: 1.601.2; 1.601.4; 1.601.6; TRUE -> true, FALSE -> false 1.601 Wed Mar 07 21:43:43 GMT 2007 thorpej branches: 1.601.2; 1.601.4; 1.601.6; TRUE -> true, FALSE -> false |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs_data.h | 1.601 Sat Feb 11 05:27:00 GMT 2012 plunky branches: 1.601.2; regen 1.601 Sat Feb 11 05:27:00 GMT 2012 plunky branches: 1.601.2; regen |
| H A D | usbdevs | 1.601 Sun Nov 20 00:26:49 GMT 2011 nonaka Added "Lenovo ThinkVision LT1421 Wide" entry. |
| H A D | usbdevs.h | 1.601 Sun Feb 19 14:55:41 GMT 2012 mbalmer Re-gen for QUAN DM9601. |
| /src/sys/arch/amd64/conf/ | ||
| H A D | GENERIC | 1.601 Thu Feb 09 14:09:48 GMT 2023 abs Adjust _all_ cinclude of *.local files - Ensure always at end - Use tab rather than spaces - Add consistent comment "Pull in optional local configuration - always at end" The only functional change is that a local file which tried to override an existing setting (eg with "no foo") would have failed in some cases before, but now will work |
| /src/share/man/man4/ | ||
| H A D | Makefile | 1.601 Tue Aug 06 22:33:59 GMT 2013 soren Build orphaned man pages. |
| /src/sys/dev/pci/ | ||
| H A D | pcidevs.h | 1.601 Fri Dec 19 03:43:07 GMT 2003 thorpej Regen: Add product ID for the Silicon Image 3114 SATALink. |
| H A D | pcidevs_data.h | 1.601 Mon Jan 05 19:31:08 GMT 2004 matt Regen. |
| H A D | pcidevs | 1.601 Sun Dec 14 04:57:16 GMT 2003 tsutsui Add ATI Radeon 9200SE. |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | tree.c | 1.601 Thu Feb 01 21:19:13 GMT 2024 rillig lint: reuse buffer editing code across lint1 Fix cat_strings to update the capacity of the buffer, to prevent quadratic runtime when concatenating string literals. |
| /src/distrib/sets/lists/base/ | ||
| H A D | shl.mi | 1.601 Mon Sep 12 00:45:25 GMT 2011 christos bump libisc too. |
| H A D | mi | 1.601 Tue Mar 14 16:16:44 GMT 2006 tnozaki added be_BY.CP1251, ru_BY.CP1251, ru_RU.CP1251 locale. requested by cheusov AT tut DOT by, thanks. |
| /src/doc/ | ||
| H A D | 3RDPARTY | 1.601 Sat May 17 11:32:39 GMT 2008 wiz file-4.24 out. |
| H A D | CHANGES | 1.601 Wed Mar 29 19:40:53 GMT 2006 rpaulo Mention IPv6 support in tun(4). |
| /src/usr.bin/make/ | ||
| H A D | main.c | 1.601 Thu Nov 02 04:50:44 GMT 2023 rillig make: inline a single-line cross-file function No functional change. |
| H A D | parse.c | 1.601 Tue Dec 28 19:13:40 GMT 2021 rillig make: extract the non-parsing part from ParseDependencyTargets No functional change. |
| H A D | var.c | 1.601 Fri Oct 30 16:16:16 GMT 2020 rillig make(1): document VAR_READONLY, now that it is really read-only |
| /src/sys/sys/ | ||
| H A D | param.h | 1.601 Wed Jul 31 14:35:25 GMT 2019 rin Bump for recent changes to struct rasops_info. Welcome to NetBSD 9.99.2! |
| /src/sys/arch/i386/conf/ | ||
| H A D | GENERIC | 1.601 Fri Apr 30 15:55:10 GMT 2004 fredb - - "options" should be followed by <SPACE><TAB>. - - restore "options COMPAT_20", no doubt commented out by mistake. |
| /src/distrib/sets/lists/man/ | ||
| H A D | mi | 1.601 Tue Sep 02 05:26:44 GMT 2003 mrg don't install iostream.info anymore - it goes away with GCC3. |
| /src/distrib/sets/lists/tests/ | ||
| H A D | mi | 1.601 Fri Nov 21 01:39:09 GMT 2014 ozaki-r Add missing file entries of tests/usr.bin/xlint/lint1 This unbreaks the build. |
| /src/share/mk/ | ||
| H A D | bsd.own.mk | 1.601 Thu Dec 03 15:57:18 GMT 2009 tron Add "MKZFS" to either "_MKVARS.yes" or "_MKVARS.no" depending on the default of this platform. This fixed the build for NetBSD/amd64 and NetBSD/i386. Yes, this horrible. There should be a better way to handle these settings in general. |
| /src/sys/conf/ | ||
| H A D | files | 1.601 Thu Feb 20 22:16:06 GMT 2003 atatat Introduce "top down" memory management for mmap()ed allocations. This means that the dynamic linker gets mapped in at the top of available user virtual memory (typically just below the stack), shared libraries get mapped downwards from that point, and calls to mmap() that don't specify a preferred address will get mapped in below those. This means that the heap and the mmap()ed allocations will grow towards each other, allowing one or the other to grow larger than before. Previously, the heap was limited to MAXDSIZ by the placement of the dynamic linker (and the process's rlimits) and the space available to mmap was hobbled by this reservation. This is currently only enabled via an *option* for the i386 platform (though other platforms are expected to follow). Add "options USE_TOPDOWN_VM" to your kernel config file, rerun config, and rebuild your kernel to take advantage of this. Note that the pmap_prefer() interface has not yet been modified to play nicely with this, so those platforms require a bit more work (most notably the sparc) before they can use this new memory arrangement. This change also introduces a VM_DEFAULT_ADDRESS() macro that picks the appropriate default address based on the size of the allocation or the size of the process's text segment accordingly. Several drivers and the SYSV SHM address assignment were changed to use this instead of each one picking their own "default". |
| /src/distrib/sets/lists/comp/ | ||
| H A D | mi | 1.601 Fri Jul 25 09:18:21 GMT 2003 hannken Typo: cat1/openssl_ocsp.1 -> cat1/openssl_ocsp.0 |
Completed in 1641 milliseconds