Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As an assignment in operating systems we have to write our own code for malloc and free in C programming language, I know if i asked the code for it there is no point of me to study. i'm facing the problem of not knowing where to include initializing char array with 50000 bytes and making two lists free and used. in my function i can't trigger malloc or free to happen automatically. and a 3rd party main program will be used to test my functions..... if my file is mymalloc.c or what ever

    void* myalloc(size_t size)
    {
        //code for allocating memory
    }
    void myfree(void *ptr)
    {
        //code for free the memory
    }

where do the code for initiating memory space and lists will go..

share|improve this question
This is remarkably similar to Writing a simulation of malloc. It isn't identical, but my answer there can help here. – Jonathan Leffler Feb 7 '12 at 13:10

5 Answers

up vote 1 down vote accepted

I think you only have to implement a memory manager. So you don't have to use brk, sbrk, ... Just put used memory in a simple array and fragment it somehow. Since it's homework you want to make it as simple as possible or else you run into problems due to complexity/time constraints of your assignment.

You only have to decide which tactic you want to use. I'd suggest to use the buddy system. Though it's a bit more complicated than the most simple ones.. maybe fixed sized fragmentation is simpler..

Maybe this is also a good read.

Don't do something low-level as suggested in the other answers..

share|improve this answer
I agree, even if I've suggested the hard way :) – vulkanino Feb 7 '12 at 13:47
thanks bro. finally i find a way to code it.. my code is work fine. no segmentation or any fault appears. but when my required size exceeds 3306 bytes it gives me a segmentation fault. – Zeemaan Feb 12 '12 at 12:21
I suggest to create a new question for that.. – duedl0r Feb 13 '12 at 8:10

The implementation greatly depends upon operating system and architecture, anyhow you may take a look at this: http://www.raspberryginger.com/jbailey/minix/html/lib_2ansi_2malloc_8c-source.html

(and study how it works!).

share|improve this answer
thanks buddy... i'll go through it – Zeemaan Feb 7 '12 at 12:58

If you are on a unix system you can look the manual of brk and sbrk. Those system calls "push/set" the limit of the heap.

Using those you can manage your memory pages, allocating them as you need.

I would advise a chained-list to manage your different allocated spaces and building functions to split them or to merge them if they are free.

If you need to try your code with high-level applications, you can name your functions malloc/free, compile them to a shared-object (.so) and then use LD_PRELOAD and LD_LIBRARY_PATH environment variables to load your .so and replace system's malloc.
Every command you call then will use your shared object and thus your malloc, telling you if your malloc is stable or if it fails to comply with reality.

If you need a clear example of this i'd be happy to put some code here, but I do not want to make my answer too hard to read.

share|improve this answer

First, you could make a fake malloc which always fail

 /* fake malloc */
 void* myalloc(size_t sz)
 { return NULL; }

but that is "cheating". You want to make a malloc which is useful.

You probably want to make a system call which asks the kernel for memory. Of course, you'll need the symetrical syscall to release memory. On Linux and many Posix systems you'll often use mmap and munmap syscalls.

(You could also use sbrk, but using mmap with munmap is easier and more general)

The idea is that you get big chunks of memory (with mmap) and then you manage smaller memory zones inside. The interesting detail is how to manage these smaller zones. You may want to deal with large malloc differently than "small" allocations.

You really want to read wikipedia page on memory allocation

share|improve this answer

You could have a global static variable that is initialized to zero. Then check that variable at the start of your malloc and free function. In your malloc function, if the variable is zero then initialize whatever you need, and then set the variable to non-zero. In your free function, just return if the variable is zero.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.