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

#if 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");
}