summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems/rtems_bsdnet_malloc_starvation.c
blob: 52e78f00e2dd6c725dc3b6e0ee7ed246585da84c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *  Routine called when malloc() is not succeeding.  This can be overridden
 *  by a BSP.
 *
 *  $Id*
 */

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

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