summaryrefslogtreecommitdiff
path: root/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c
blob: a12e3298bf0e9b825ef69e3614dcf0e88cf92001 (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
26
27
28
29
30
31
32
33
#include <machine/rtems-bsd-kernel-space.h>

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

#define RTEMS_FAST_MUTEX

#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <errno.h>

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

/*
 * We want to use the REAL system malloc.  Do not let the BSD malloc macro
 * invade this file.
 */
extern void *malloc(size_t);

/*
 * Default allocator for mbuf data. Over-ride in user code to change
 * the way mbuf's are allocated.
 */

void* rtems_bsdnet_malloc_mbuf(size_t size, int type)
{
   return malloc(size);
}