aboutsummaryrefslogblamecommitdiff
path: root/src/kernel/core/freemem.c
blob: 18cc740cfa80987df276314a1dd3ba2d1e073d8f (plain) (tree)
1
2
3
4
5
6
7


                    
                  

                         
                                




                                                                                             
#include <freemem.h>
#include <thread.h>
#include <debug.h>
#include <frame.h>

void free_some_memory() {
	dbg_print_frame_stats();
	dbg_printf("Currently out of memory ; free_some_memory not implemented. Waiting.\n");
	usleep(1000000);	// Hope someone will do something...
}

/* vim: set ts=4 sw=4 tw=0 noet :*/