Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-03-21 | Regen | Miod Vallat | |
2003-03-21 | its obwous``renassiance'' apeers too be a spelink mistaek. | Miod Vallat | |
2003-03-16 | Old unused stuff left under the carpet. | Miod Vallat | |
2003-02-11 | be consistant on Hz vs hz | Michael Shalayeff | |
2003-02-02 | I've been guaranteed that guaranteed is better than guarenteed. | Miod Vallat | |
2003-01-27 | Convert m68k pmap from physseg to VM_PAGE_MD. | Miod Vallat | |
This allows us to remove some ambiguities on how some functions are called, remove some diagnostic checks for conditions that can never happen and remove the ugly hack with "pmap_initialized". Then, rework internal function interfaces and some logic so as to stop fetching vm_page from a pa and the reverse every now and then - this makes some pmap operations run much faster. per art@'s idea. | |||
2003-01-09 | Remove fetch(9) and store(9) functions from the kernel, and replace the few | Miod Vallat | |
remaining instances of them with appropriate copy(9) usage. ok art@, tested on all arches unless my memory is non-ECC | |||
2003-01-05 | splassert on m68k-based arches. Not totally accurate on hp300 at the moment, | Miod Vallat | |
still. | |||
2003-01-04 | Remove COMPAT_NOMID. It was deprecated since a long time, the man page wass | Miod Vallat | |
misleading, and it was never used anyways. | |||
2002-12-25 | No need to define FOO?=foo for AS, CC, CPP and LD, as they are always already | Miod Vallat | |
set from <sys.mk> | |||
2002-12-25 | Turn xxUNIT, xxPARt, xxLABELDEV macro names into uppercase. | Miod Vallat | |
2002-12-25 | Get prototypes from *dev_decl() macros rather than running our own. | Miod Vallat | |
2002-12-25 | Do not force DEBUG to be defined here. hp300 is already slow enough. | Miod Vallat | |
2002-12-17 | Make SysV-style shared memory and semaphore limits sysctl'able. | Todd C. Miller | |
Instead of allocating a static amount of memory for the data structures via valloc() in allocsys(), allocate things dynamically using pool(9) when possible and malloc(9) when not. The various members of struct seminfo and struct shminfo are in kern.seminfo and kern.shminfo respectively (not all members of kern.seminfo are changable). The data structures used still leave something to be desired but things are not made worse in that respect by this commit. | |||
2002-12-10 | Typos, and fix a comment's content. | Miod Vallat | |
2002-12-10 | interupt->interrupt | Miod Vallat | |
2002-12-09 | From Andrushock, s/sucess/success/g | Todd C. Miller | |
2002-12-06 | unkown; torh@bogus.net | Theo de Raadt | |
2002-12-05 | remove altq entries. | Kenjiro Cho | |
altq is merged into pf and handled through pf. | |||
2002-12-02 | Import propolice (http://www.trl.ibm.com/projects/security/ssp), a stack | Miod Vallat | |
attack protection scheme, into gcc. This protection is enabled by default. It can be turned off by using the -fno-stack-protector flag. Code by Hiroaki Etoh (etoh at jp dot ibm dot com); work on openbsd-specific integration by fgsch@, deraadt@ and myself; tests by fgsch@, naddy@ and myself; beer drinking by myself. Please note that system upgrades with this new code will require a new libc and ld.so to be build and installed before the propolice-enabled compiler can be installed. | |||
2002-11-29 | inconsistant spelling; torh@bogus.net | Theo de Raadt | |
2002-10-29 | Since memory deallocation can't fail, remove the error return from | Artur Grabowski | |
uvm_unmap, uvm_deallocate and a few other functions. Simplifies some code and reduces diff to the UBC branch. | |||
2002-10-12 | Remove more '\n's from panic() statements. Both trailing and leading. | Kenneth R Westerback | |
Diff generated by Chris Kuethe. | |||
2002-10-10 | protect against multiple inclusion; pointed out by naddy, miod ok | Peter Valchev | |
2002-08-09 | Add an explicit dependancy of assym.h to Makefile. | Miod Vallat | |
This makes sure it will be regenerated if you run config(8) again. | |||
2002-08-02 | In hpux_sys_getcontext(), check for len <= 0 and return EINVAL. | Todd C. Miller | |
Noted by Silvio Cesare | |||
2002-07-20 | Instead of copying out the signal trampoline on top of the stack, create | Artur Grabowski | |
an uvm aobj, copy out the signal trampoline into it and share that page among all processes for the same emulation. This also requires us to actually be able to tell signal code where the trampoline is located, so introduce a new field in struct proc - p_sigcode that is a pointer to sigcode. This allows us to remove all the ugly calculations of the signal trampoline address done in every sendsig function in the tree (that's why so many files are changed). Tested by various people. ok deraadt@ | |||
2002-07-15 | repair tags building (due to obj dirs in /sys) | Michael Shalayeff | |
2002-07-10 | proper cdev_decl(ksyms), fix ksyms's broken functions | Michael Shalayeff | |
2002-07-10 | 'sez' is not an english word; ok deraadt@ | Jason Peel | |
2002-06-23 | uid_t is unsigned | Theo de Raadt | |
2002-06-22 | Add ${PIPE} to CFLAGS | Todd C. Miller | |
2002-06-09 | convert sleep() calls to tsleep(). | Miod Vallat | |
2002-06-09 | fix the use of "cuz" in the tree; these are all in comments | Jason Peel | |
noticed by aaron@, recommended by deraadt@ | |||
2002-06-07 | Remove obsolete CLKF_BASEPRI(). ok niklas@, miod@ and art@ | Thomas Nordin | |
2002-06-04 | spelling; raj@cerias.purdue.edu | Theo de Raadt | |
2002-05-30 | protect biodone with splbio. | Artur Grabowski | |
miod@ ok. | |||
2002-05-23 | remove the defines for iodone -> biodone and iowait -> biowait. | Artur Grabowski | |
Use the correct functions everywhere instead. | |||
2002-05-16 | Add systrace support to all the remaining architectures. | Miod Vallat | |
Tested by various people on various platforms, I'm willing to fix any breakage this causes. ok niels@ deraadt@ and mickey@ (after his comments were applied) | |||
2002-04-29 | Define placeholders for art's splassert() debugging stuff on all arches. | Miod Vallat | |
Currently as no-ops everywhere. ok art@, deraadt@ | |||
2002-04-29 | wierd -> weird | Peter Valchev | |
2002-04-28 | Use the prototypes defined via cdev_decl() macros, instead of rolling our | Miod Vallat | |
own; thus fix a lot of foo_open(), foo_close() and foo_ioctl() prototypes in the process. | |||
2002-04-28 | Use netisr_dispatch | Miod Vallat | |
2002-04-25 | Use more symbolic constants rather than magic values... | Miod Vallat | |
2002-04-25 | Factorize more common m68k definitions. | Miod Vallat | |
2002-04-24 | Introduce a new file, machine/internal_types.h, to hold that specific arch | Marc Espie | |
type characteristics. internal_types.h will contain only settings invisible from standard C, e.g., in the __* or _[A-Z]* namespace, and be reused by files like limits.h. This allows us to shorten machine/limits.h greatly, as all the common defines are now in sys/limits.h, plus a small stub in internal_types.h. Tested on all arches as far as I know. Approved after discussion with art, millert, deraadt, and others. | |||
2002-04-16 | Same .text vs .data issue as for mvme68k. | Miod Vallat | |
2002-03-23 | Add variables for config(8) -e time tweak of systemV shared memory | Marc Espie | |
parameters. Ok millert@, miod@, maja@ | |||
2002-03-15 | Cosmetic changes only, primarily making comments line up nicely after the | Todd C. Miller | |
__P removal. | |||
2002-03-14 | remove ambiguity in version,ostype,osversion,osrelease and their constanity, ↵ | Michael Shalayeff | |
they are and declarre 'em accordingly also removing private externies of those |