16.05.2015 Views

Working with the Unix OS

Working with the Unix OS

Working with the Unix OS

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

C Libraries<br />

Storage Allocator<br />

Free list (points to a circular list of free blocks f)<br />

-------------------------------------------------<br />

n | x | f | f | x | x | f | n | n | x | f | f | f | f | n<br />

-------------------------------------------------<br />

x blocks (in use);<br />

n blocks (not owned by malloc)<br />

typedef long Align; /* for alignment to long boundary */<br />

union header { /* block header */<br />

struct {<br />

union header *ptr; /* next block if on free list */<br />

unsigned size; /* size of this block */<br />

} s;<br />

Align x; /* force alignment of blocks */<br />

} ;<br />

typedef union header Header;<br />

static Header base; /* empty list to get started */<br />

static Header *freep = NULL; /* start of free list */<br />

/* malloc: general-purpose storage allocator */<br />

void *malloc(unsigned nbytes)<br />

{<br />

Header *p, *prevp;<br />

Header *morecore(unsigned);<br />

unsigned nunits;<br />

nunits = (nbyte+sizeof(Header)-l)/sizeof(Header) + 1;<br />

if ((prevp = freep) == NULL) /* no free list yet */<br />

{<br />

base.s.ptr = freep = prevp = &base;<br />

base.s.size = 0;<br />

}<br />

}<br />

for (p= prevp->s.ptr; ; prevp = p, p = p->s.ptr)<br />

{<br />

if(p->s.size >= nunits) /* big enough */<br />

{<br />

if(p->s.size == nunits) /* exactly */<br />

prevp->s.ptr = p->s.ptr;<br />

else /* allocate tail end */<br />

{<br />

p->s.size -= nunits;<br />

p += p->s.size;<br />

p ->s.size = nunits;<br />

}<br />

freep = prevp;<br />

return(void *) (p+l);<br />

}<br />

if (p == freep) /* wrapped around free list */<br />

if ((p = morecore(nunits)) == NULL)<br />

return NULL; /* none left*/<br />

}<br />

Curses - screen handling<br />

Screen management programs (handle I/O at video display) are a common component of many commercial<br />

applications.<br />

75

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!