ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/salloc.C
(Generate patch)

Comparing rxvt-unicode/src/salloc.C (file contents):
Revision 1.1 by pcg, Wed Dec 17 09:00:35 2003 UTC vs.
Revision 1.5 by pcg, Fri Feb 13 12:16:21 2004 UTC

1#include "salloc.h" 1#include "salloc.h"
2 2
3#define SALLOC_BLOCK 65536 // size of basic block to allocate 3#define SALLOC_BLOCK 65536 // size of basic block to allocate
4 4
5rxvt_salloc::rxvt_salloc (int size) 5rxvt_salloc::rxvt_salloc (unsigned int size)
6{ 6{
7 this->size = size < sizeof (chain) ? sizeof (chain) : size; 7 this->size = size < sizeof (chain) ? sizeof (chain) : size;
8 firstline = 0; 8 firstline = 0;
9 firstblock = 0; 9 firstblock = 0;
10 firstfree = SALLOC_BLOCK; 10 firstfree = SALLOC_BLOCK;
38 next->next = firstblock; 38 next->next = firstblock;
39 firstblock = next; 39 firstblock = next;
40 firstfree = sizeof (chain); 40 firstfree = sizeof (chain);
41 } 41 }
42 42
43 r = (void *)((char *)firstblock + firstfree); 43 r = (void *) ((char *)firstblock + firstfree);
44 44
45 firstfree += size; 45 firstfree += size;
46 } 46 }
47 47
48 return r; 48 return r;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines