/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_kernel_panic.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/12/11 18:26:08 by rbousset #+# ## ## #+# */ /* Updated: 2019/12/11 18:26:09 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include #include void ft_kernel_panic(void) { int *ptr; while (1) { ptr = (int *)ft_calloc((1024 * 1024) * sizeof(int), 1); } free(ptr); }