aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/inflate.c
Commit message (Collapse)AuthorAgeFilesLines
* Modernize my email address.Poul-Henning Kamp2002-03-251-1/+1
| | | | Notes: svn path=/head/; revision=93149
* Remove __P.Alfred Perlstein2002-03-191-8/+8
| | | | Notes: svn path=/head/; revision=92723
* Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"Peter Wemm1999-12-291-9/+9
| | | | | | | | | is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come. Notes: svn path=/head/; revision=55206
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* kzipboot uses kern/inflate.c outside the kernel by providing its ownPeter Wemm1998-11-101-3/+8
| | | | | | | minimal malloc/free implementation. Stop passing M_GZIP to it. Notes: svn path=/head/; revision=41057
* Last major round (Unless Bruce thinks of somthing :-) of malloc changes.Poul-Henning Kamp1997-10-121-2/+2
| | | | | | | | | | | Distribute all but the most fundamental malloc types. This time I also remembered the trick to making things static: Put "static" in front of them. A couple of finer points by: bde Notes: svn path=/head/; revision=30354
* Distribute and statizice a lot of the malloc M_* types.Poul-Henning Kamp1997-10-111-1/+3
| | | | | | | Substantial input from: bde Notes: svn path=/head/; revision=30309
* Removed unused #includes.Bruce Evans1997-08-021-2/+1
| | | | Notes: svn path=/head/; revision=27845
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
| | | | | | | ready for it yet. Notes: svn path=/head/; revision=22975
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Removed unnecessary #includes of vm stuff. Most of them were onceBruce Evans1995-12-061-6/+1
| | | | | | | | | | prerequisites for <sys/sysctl.h>. subr_prof.c: Also replaced #include of <sys/user.h> by #include of <sys/resourcevar.h>. Notes: svn path=/head/; revision=12657
* Changes needed for kzip to work.Poul-Henning Kamp1995-04-151-7/+30
| | | | Notes: svn path=/head/; revision=7840
* I belive imgact_gzip is finally reentrant. It is also a whole lot morePoul-Henning Kamp1994-10-221-869/+683
| | | | | | | | | | readable. inflate is now much more general, and is there if anybody feels like making a uncompressing filesystem or something like that (hint hint !) Notes: svn path=/head/; revision=3784
* - remove unnecessary #includes (I think a couple of redundant ones remain)Geoff Rehmet1994-10-111-18/+18
| | | | | | | | | | | - excise some unused code (#if 0'd out - don't want to nuke it yet) - fix problems with "make depend" - some macros were screwing it up - get rid of some static local variables There still seems to be a small reentrancy problem somewhere. Notes: svn path=/head/; revision=3507
* Make inflate() reentrant - no more global variables.Geoff Rehmet1994-10-071-41/+53
| | | | | | | (The gzip image activator now needs a good code tidy up.) Notes: svn path=/head/; revision=3418
* First stage of getting imgact_gzip reentrant:Geoff Rehmet1994-10-071-0/+1228
1) cut this up into /sys/sys/inflate.h, sys/kern/inflate.c sys/kern/ingact_gzip.c 2) make a lot more things static 3) make a lot of globals const 4) make some args const 5) first stage of making globals into a struct (not used yet) The vm_allocate() call which was introduced between revisions 1.4 and 1.5 of imagact_gzip.c broke things. I have backed that out for the time being. (Davidg: help please) WARNING: if you have gzip enabled in your kernel, you must now run config again, as another source file has been added. Otherwise your kernel compile will fall over. This is all still WIP. More commits to come. Suggestions from: phk. Notes: svn path=/head/; revision=3417