some tests and create data structures

This commit is contained in:
2024-11-28 20:25:32 +01:00
parent a18b30c0b2
commit f721d2e95d
3 changed files with 94 additions and 5 deletions

View File

@ -6,7 +6,7 @@
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/26 16:38:01 by tomoron #+# #+# */
/* Updated: 2024/11/26 20:17:37 by tomoron ### ########.fr */
/* Updated: 2024/11/28 20:16:54 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -18,6 +18,35 @@
# endif
#include <stddef.h>
void *malloc(size_t size);
#include <sys/mman.h>
#include <unistd.h>
#define TINY_MALLOC_ALL 16384
#define SMALL_MALLOC_ALL 524288
#define TINY_MALLOC 1024
#define SMALL_MALLOC 4096
typedef struct s_alloc
{
size_t size; //8
struct s_alloc *next; //8
} t_alloc; //size 16
typedef struct s_mem_bloc
{
t_alloc *first_alloc; //8
struct s_mem_bloc *next; //8
} t_mem_bloc; //size 16
typedef struct s_allocations
{
t_mem_bloc *tiny;
t_mem_bloc *small;
t_mem_bloc *large;
} t_allocations;
void *ft_malloc(size_t size);
#endif