mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 23:12:24 +00:00
bf8b52ec3a
This release candidate suppresses the remaining build warnings. Ref #2335
125 lines
2.9 KiB
C
125 lines
2.9 KiB
C
/*
|
|
* \brief Some size definitions and macros needed by LwIP.
|
|
* \author Stefan Kalkowski
|
|
* \author Emery Hemingway
|
|
* \date 2009-11-10
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2009-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef __LWIP__ARCH__CC_H__
|
|
#define __LWIP__ARCH__CC_H__
|
|
|
|
#include <base/fixed_stdint.h>
|
|
|
|
|
|
#ifndef LWIP_RAND
|
|
genode_uint32_t genode_rand();
|
|
#define LWIP_RAND() genode_rand()
|
|
#endif
|
|
|
|
|
|
#ifndef LWIP_NO_STDDEF_H
|
|
#define LWIP_NO_STDDEF_H 1
|
|
typedef unsigned long size_t;
|
|
typedef long ptrdiff_t;
|
|
#endif /* LWIP_NO_STDDEF_H */
|
|
|
|
#ifndef LWIP_NO_STDINT_H
|
|
#define LWIP_NO_STDINT_H 1
|
|
#define LWIP_HAVE_INT64
|
|
typedef genode_uint8_t uint8_t;
|
|
typedef genode_int8_t int8_t;
|
|
typedef genode_uint16_t uint16_t;
|
|
typedef genode_int16_t int16_t;
|
|
typedef genode_uint32_t uint32_t;
|
|
typedef genode_int32_t int32_t;
|
|
typedef genode_uint64_t uint64_t;
|
|
typedef genode_int64_t int64_t;
|
|
typedef unsigned long uintptr_t;
|
|
typedef uint8_t u8_t;
|
|
typedef int8_t s8_t;
|
|
typedef uint16_t u16_t;
|
|
typedef int16_t s16_t;
|
|
typedef uint32_t u32_t;
|
|
typedef int32_t s32_t;
|
|
typedef uint64_t u64_t;
|
|
typedef int64_t s64_t;
|
|
typedef uintptr_t mem_ptr_t;
|
|
|
|
#ifndef NULL
|
|
#define NULL (uintptr_t)0
|
|
#endif
|
|
#endif /* LWIP_NO_STDINT_H */
|
|
|
|
|
|
#ifndef LWIP_NO_INTTYPES_H
|
|
#define LWIP_NO_INTTYPES_H 1
|
|
/* Define (sn)printf formatters */
|
|
#define U16_F "u" // we don't have hu
|
|
#define S16_F "d" // we don't have hd
|
|
#define X16_F "x" // we don't have hx
|
|
#define U32_F "u"
|
|
#define S32_F "d"
|
|
#define X32_F "x"
|
|
#endif /* LWIP_NO_INTTYPES_H */
|
|
|
|
|
|
#ifndef LWIP_PLATFORM_DIAG
|
|
void lwip_printf(const char *format, ...);
|
|
#define LWIP_PLATFORM_DIAG(x) do { lwip_printf x; } while(0)
|
|
#endif /* LWIP_PLATFORM_DIAG */
|
|
|
|
|
|
#ifdef GENODE_RELEASE
|
|
#define LWIP_PLATFORM_ASSERT(x)
|
|
#else /* GENODE_RELEASE */
|
|
void lwip_platform_assert(char const* msg, char const *file, int line);
|
|
#define LWIP_PLATFORM_ASSERT(x) \
|
|
do { \
|
|
lwip_platform_assert(x, __FILE__, __LINE__); \
|
|
} while (0)
|
|
#endif /* GENODE_RELEASE */
|
|
|
|
|
|
#ifndef LWIP_NO_LIMITS_H
|
|
#define LWIP_NO_LIMITS_H 1
|
|
#endif
|
|
|
|
|
|
#ifndef LWIP_NO_CTYPE_H
|
|
#define LWIP_NO_CTYPE_H 1
|
|
#endif
|
|
|
|
|
|
#define LWIP_SKIP_PACKING_CHECK 1
|
|
#define PACK_STRUCT_FIELD(x) x
|
|
#define PACK_STRUCT_STRUCT
|
|
#define PACK_STRUCT_BEGIN
|
|
#define PACK_STRUCT_END
|
|
|
|
#ifndef BYTE_ORDER
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
#endif /* BYTE_ORDER */
|
|
|
|
/*
|
|
* XXX: Should these be inlined?
|
|
*/
|
|
void genode_memcpy( void *dst, const void *src, size_t len);
|
|
void *genode_memmove(void *dst, const void *src, size_t len);
|
|
|
|
void genode_free(void *ptr);
|
|
void *genode_malloc(unsigned long size);
|
|
void *genode_calloc(unsigned long number, unsigned long size);
|
|
|
|
#define mem_clib_free genode_free
|
|
#define mem_clib_malloc genode_malloc
|
|
#define mem_clib_calloc genode_calloc
|
|
|
|
#endif /* __LWIP__ARCH__CC_H__ */
|