Tagged Questions

4
votes
3answers
523 views

Memory allocation in C

the following is a very very simple version of malloc() and seems to allocate some space to me, but apart from the fact that there is no free() and I don't check if I've overrun the allocated space, ...
2
votes
1answer
321 views

Memory allocator in C — how to utilize sbrk()'ed space

I've been writing an implementation of malloc and was wondering if someone could help me with this problem. Basically, I would like to reuse memory after allocating it using sbrk(), and having made ...
2
votes
2answers
563 views

How do you dynamically allocate memory in Mac OS X assembly?

I would like to dynamically allocate memory from an assembly program that does not link against the standard C library. Since brk(2) and sbrk(2) are unavailable on Mac OS X (10.6.2), what are the ...
1
vote
1answer
475 views

mmap vs sbrk, performance comparison

Which of these calls is faster on average? I've heard that mmap is faster for smaller allocations but I haven't heard a comparison of either. Any information on performance for these would be nice.
0
votes
2answers
71 views

Allocating proper memory size

I am having an issue with allocating the right size of memory in my program. I do the following: void * ptr = sbrk(sizeof(void *)+sizeof(unsigned int)); When I do this, I think it is adding too ...
0
votes
1answer
488 views

Memory (sbrk) 16-byte aligned shifting on pointer access

I wrote a reasonably basic memory allocator using sbrk. I ask for a chunk of memory, say 65k and carve it up as needed for variables requesting dynamic memory. I free the memory by adding it back to ...