trivial: remove superfluous empty lines
Signed-off-by: Axel Heider <axelheider@gmx.de>
This commit is contained in:
parent
7d7a404bff
commit
98f28676b2
15 changed files with 0 additions and 18 deletions
|
|
@ -10,4 +10,3 @@
|
||||||
#define wordBits (1 << wordRadix)
|
#define wordBits (1 << wordRadix)
|
||||||
|
|
||||||
typedef uint32_t timestamp_t;
|
typedef uint32_t timestamp_t;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@
|
||||||
#define wordBits (1 << wordRadix)
|
#define wordBits (1 << wordRadix)
|
||||||
|
|
||||||
typedef uint64_t timestamp_t;
|
typedef uint64_t timestamp_t;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,4 +52,3 @@ typedef struct kernel_frame {
|
||||||
int armExecuteNever;
|
int armExecuteNever;
|
||||||
int userAvailable;
|
int userAvailable;
|
||||||
} kernel_frame_t;
|
} kernel_frame_t;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,3 @@
|
||||||
compile_assert(long_is_32bits, sizeof(unsigned long) == 4)
|
compile_assert(long_is_32bits, sizeof(unsigned long) == 4)
|
||||||
|
|
||||||
#define wordRadix 5
|
#define wordRadix 5
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,5 +13,3 @@
|
||||||
compile_assert(long_is_64bits, sizeof(unsigned long) == 8)
|
compile_assert(long_is_64bits, sizeof(unsigned long) == 8)
|
||||||
|
|
||||||
#define wordRadix 6
|
#define wordRadix 6
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
@ -45,4 +44,3 @@ typedef struct kernel_frame {
|
||||||
pptr_t pptr;
|
pptr_t pptr;
|
||||||
int userAvailable;
|
int userAvailable;
|
||||||
} kernel_frame_t;
|
} kernel_frame_t;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@
|
||||||
|
|
||||||
#define wordRadix 5
|
#define wordRadix 5
|
||||||
#define wordBits (1 << wordRadix)
|
#define wordBits (1 << wordRadix)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@
|
||||||
|
|
||||||
#define wordRadix 6
|
#define wordRadix 6
|
||||||
#define wordBits (1 << wordRadix)
|
#define wordBits (1 << wordRadix)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,4 +42,3 @@ typedef paddr_t seL4_PAddr;
|
||||||
typedef dom_t seL4_Domain;
|
typedef dom_t seL4_Domain;
|
||||||
|
|
||||||
typedef uint64_t timestamp_t;
|
typedef uint64_t timestamp_t;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,4 +53,3 @@ void _assert_fail(
|
||||||
#else
|
#else
|
||||||
#define unverified_compile_assert compile_assert
|
#define unverified_compile_assert compile_assert
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,4 +29,3 @@ struct extra_caps {
|
||||||
cte_ptr_t excaprefs[seL4_MsgMaxExtraCaps];
|
cte_ptr_t excaprefs[seL4_MsgMaxExtraCaps];
|
||||||
};
|
};
|
||||||
typedef struct extra_caps extra_caps_t;
|
typedef struct extra_caps extra_caps_t;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,4 +16,3 @@
|
||||||
#include <object/structures.h>
|
#include <object/structures.h>
|
||||||
#include <object/tcb.h>
|
#include <object/tcb.h>
|
||||||
#include <object/untyped.h>
|
#include <object/untyped.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,4 +11,3 @@
|
||||||
#define va_end(v) __builtin_va_end(v)
|
#define va_end(v) __builtin_va_end(v)
|
||||||
#define va_arg(v,l) __builtin_va_arg(v,l)
|
#define va_arg(v,l) __builtin_va_arg(v,l)
|
||||||
typedef __builtin_va_list va_list;
|
typedef __builtin_va_list va_list;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,4 +11,3 @@
|
||||||
word_t strnlen(const char *s, word_t maxlen);
|
word_t strnlen(const char *s, word_t maxlen);
|
||||||
word_t strlcpy(char *dest, const char *src, word_t size);
|
word_t strlcpy(char *dest, const char *src, word_t size);
|
||||||
word_t strlcat(char *dest, const char *src, word_t size);
|
word_t strlcat(char *dest, const char *src, word_t size);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@
|
||||||
|
|
||||||
#include <basic_types.h>
|
#include <basic_types.h>
|
||||||
#include <compound_types.h>
|
#include <compound_types.h>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue