blob: d58047ae3814448ba0016794740c52a6df79212b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_kernel_panic.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/12/11 18:26:08 by rbousset #+# ## ## #+# */
/* Updated: 2019/12/11 18:26:09 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <libft.h>
#include <stdlib.h>
void
ft_kernel_panic(void)
{
int *ptr;
while (1)
{
ptr = (int *)ft_calloc((1024 * 1024) * sizeof(int), 1);
}
free(ptr);
}
|