blob: 437a79ac7b064c1d266393e96e38df1005d99207 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_kernel_panic.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.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);
}
|