Giter Club home page Giter Club logo

dynamic-memory-allocator's Introduction

Dynamic Memory Allocator: Multi-Pool

This project:

Executed a multi-pool allocator in programming language C and provided memory allocation functions such as malloc (), calloc(), and realloc(). Performed free () function to free memory regions allocated by any of the above allocation functions

===

Repository Layout

The src/ directory contains the source code for your allocator, as well as some helper code. As given, it is a barely-working allocator that uses sbrk() to directly allocate memory from the operating system for every request. It does not implement realloc(), so many applications will not run.

You should implement your entire allocator in src/mm.c. The bulk allocator is also in src/bulk.c, but you should not modify the bulk allocator for your implementation; the Autograder will test your implementation using the given bulk allocator.

The tests/ directory contains two simple tests; one of them tests the bulk allocator (which, as stated above, you should not modify; this test is just a sanity check to make sure the bulk allocator is working, and to give you an example of a test), and the other tests to make sure that sbrk() is not called between two requests for the same size allocation. Note that this second test will pass with the given allocator, but that the given allocator is NOT a correct allocator; however, if your allocator has bugs, it may well fail this test! These two tests should help you see how to design and run your own tests.

Building the Project

The default make target (built by invoking make) builds the shared object (library) file libcsemalloc.so. This object contains your allocator and can be used to run your standard Unix utilities using your allocator. Instructions for how to do this are in the Makefile.

dynamic-memory-allocator's People

Contributors

steveligt avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.