summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Expand)Author
2002-02-15undo latest commit for now, it breaks nanosleepPeter Valchev
2002-02-15Make rescheduling to a later time faster. ok art@Thomas Nordin
2002-02-15Don't get confused in nanosleep(2) when the time changes.Artur Grabowski
2002-02-15Add a tvtohz function. Like hzto, but doesn't subtract the current time.Artur Grabowski
2002-02-14No more RFORK_FDSAHRE option, always allow FORK_SHAREFILES.Artur Grabowski
2002-02-13More FREF/FRELE on relevant places. Now, only sys_mmap and a bunch of ioctl f...Artur Grabowski
2002-02-12More FREF/FRELE protection. This time all users of getvnode.Artur Grabowski
2002-02-12malloc_roundup to calculate allocation size malloc will use; from netbsd;Niels Provos
2002-02-12Fix my total blackout of the brain.Artur Grabowski
2002-02-12Fix all users of getsock to use FREF/FRELE properly.Artur Grabowski
2002-02-11Big fixup of fd passing. It now works, even on sparc64.Artur Grabowski
2002-02-11In {send,recv}msg allow zero sized message. We can have control data.Artur Grabowski
2002-02-09Protect the whole sys_fnctl with one big FREF/FRELE pair.Artur Grabowski
2002-02-08Require a FREFd file in dofilewrite{,v}.Artur Grabowski
2002-02-08require a FREFd fp in dofilereadv. Fix some comments.Artur Grabowski
2002-02-08simplify sys_pread a bit.Artur Grabowski
2002-02-08Add a comment about an obscure behavior in dup2(2).Artur Grabowski
2002-02-08Add a slightly redundant arg to finishdup that's the struct file *Artur Grabowski
2002-02-08No more need for ffree. Since it's hard to use it safely, remove it.Artur Grabowski
2002-02-08- Rename FILE_{,UN}USE to FREF and FRELE. USE is a bad verb and we don't haveArtur Grabowski
2002-02-05Zero-ize ext even if it has a free method defined.Angelos D. Keromytis
2002-02-05Do range check on SO_LINGER, closes pr#2375. art@ okThomas Nordin
2002-02-05panic if a read-only mbuf is given to m_zero() --- from art@openbsd.orgAngelos D. Keromytis
2002-02-05Fix m_zero() yet again -- yesterday's fix wasn't sufficient.Angelos D. Keromytis
2002-02-05Add counting of temporary references to a struct file (as opposed to referencesArtur Grabowski
2002-02-05Workaround for VM_MAXUSER_ADDRESS not being page aligned on sparc64.Artur Grabowski
2002-02-04Also, cleanup any external buffers first (paranoid).Angelos D. Keromytis
2002-02-04Revision 1.37 was borked... This time, fix the casts and address theJason Wright
2002-02-04Cleanup mountroot-related definitions.Miod Vallat
2002-02-04Add some comments documenting why we use fd_ofiles insteadArtur Grabowski
2002-02-04Don't ffree the newly allocated file before calling dupfdopen.Artur Grabowski
2002-02-02Reorganize sys_fcntl to make future changes easier.Artur Grabowski
2002-02-02Be more consistent about using fd_getfile where it matters.Artur Grabowski
2002-02-01Don't MALLOC/FREE with variable size.Artur Grabowski
2002-02-01Allocate kqueues with pool.Artur Grabowski
2002-02-01Don't MALLOC with variable size.Artur Grabowski
2002-01-31Ignore signals if/when we are exiting.Tobias Weingartner
2002-01-30Move SET/CLR/ISSET macros to param.h. fgsch@ and millert@ okThomas Nordin
2002-01-30Add proc0 to the PIDHASH table. art@ okThomas Nordin
2002-01-29Honor the printf-like function argument in pool_printit(), instead ofMiod Vallat
2002-01-28GC PR_STATIC and PR_MALLOCOK.Artur Grabowski
2002-01-25Add a drain hook to each pool. This hook is called in three cases.Artur Grabowski
2002-01-25poolify pcreds.Artur Grabowski
2002-01-25Convert plimit allocations to pool.Artur Grabowski
2002-01-25kernel printfs triggerable by a simple mistake in userland are just wrong.Artur Grabowski
2002-01-23move mb_map allocation to mbinit()Artur Grabowski
2002-01-23move definition of mb_map from zillions of machdep.c to uipc_mbuf.cArtur Grabowski
2002-01-23Allocate rusage, pgrp, ucred and session with pool.Artur Grabowski
2002-01-23Kill PR_FREEHEADER, not used anymore and confusing.Artur Grabowski
2002-01-23Pool deals fairly well with physical memory shortage, but it doesn't dealArtur Grabowski