Coder Social home page Coder Social logo

ft_malloc's People

Contributors

ycaro02 avatar

Stargazers

Ruben Rollin avatar

Watchers

 avatar

ft_malloc's Issues

Implement Mutex

First bonus implementation : Manage the use of your malloc in a multi-threaded program (so to be “thread safe”
using the pthread lib).

Realloc fix

This test return NULL for second realloc, print: '"Realloc2 return NULL'
void realloc_test()
{
char *b = malloc(3000);
b[0] = 2;
char *a = malloc(2);
a[0] = 'a';
int len = 100;
char *test = NULL;
test = realloc(test, len);
if (!test) {
printf("Realloc1 return NULL\n");
show_alloc_mem();
free_meta_data();
return ;
}
for (int i = 0; i < len; i++)
test[i] = 'k';
show_alloc_mem();
len = 900;
test = realloc(test, len);
if (!test) {
printf("Realloc2 return NULL\n");
// show_alloc_mem();
free_meta_data();
show_alloc_mem();
return ;
}
printf("Realloc ok\n");
// for (int i = 0; i < len; i++)
// test[i] = 'l';
// len = 3000;
// show_alloc_mem();
// test = realloc(test, len);
// for (int i = 0; i < len; i++)
// test[i] = 'z';
// show_alloc_mem();
}

defrag

Implement defragmentation, for this build a linked list remain free block addr instead of free_size in each page, this list can be build without allocate more memory see utils print define and malloc.h

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.