Name: Anonymous 2010-07-24 6:51
implement
malloc() using the C programming language.
malloc() using the C programming language.
void* malloc(size_t size)
{
/* Create file with random name, `size' large. */
/* mmap file. */
/* Return memory area. */
}
/* Implementation of free using munmap and unlink. */