summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems/rtems_bsdnet_malloc_starvation.c
blob: c5ccd8c3c2e1d68d72924fabf40b0123d11f0703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <machine/rtems-bsd-kernel-space.h>

/*
 *  Routine called when malloc() is not succeeding.  This can be overridden
 *  by a BSP.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdio.h>
#include <rtems/rtems_bsdnet.h>

void
rtems_bsdnet_malloc_starvation(void)
{
  printf ("rtems_bsdnet_malloc still waiting.\n");
}