blob: 06ea43e2ba8186262f5db9cd28ad8326313335f0 (
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
 | /* ************************************************************************** */
/*                                                          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);
}
 |