mirror of
https://github.com/facebook/zstd.git
synced 2025-07-29 11:21:22 +03:00
Add userland test with mock kernel headers
This commit is contained in:
12
contrib/linux-kernel/test/include/linux/compiler.h
Normal file
12
contrib/linux-kernel/test/include/linux/compiler.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef LINUX_COMIPLER_H_
|
||||
#define LINUX_COMIPLER_H_
|
||||
|
||||
#ifndef __always_inline
|
||||
# define __always_inline inline
|
||||
#endif
|
||||
|
||||
#ifndef noinline
|
||||
# define noinline __attribute__((__noinline__))
|
||||
#endif
|
||||
|
||||
#endif // LINUX_COMIPLER_H_
|
14
contrib/linux-kernel/test/include/linux/kernel.h
Normal file
14
contrib/linux-kernel/test/include/linux/kernel.h
Normal file
@ -0,0 +1,14 @@
|
||||
#ifndef LINUX_KERNEL_H_
|
||||
#define LINUX_KERNEL_H_
|
||||
|
||||
#define ALIGN(x, a) ({ \
|
||||
typeof(x) const __xe = (x); \
|
||||
typeof(a) const __ae = (a); \
|
||||
typeof(a) const __m = __ae - 1; \
|
||||
typeof(x) const __r = __xe & __m; \
|
||||
__xe + (__r ? (__ae - __r) : 0); \
|
||||
})
|
||||
|
||||
#define PTR_ALIGN(p, a) (typeof(p))ALIGN((unsigned long long)(p), (a))
|
||||
|
||||
#endif // LINUX_KERNEL_H_
|
1
contrib/linux-kernel/test/include/linux/string.h
Normal file
1
contrib/linux-kernel/test/include/linux/string.h
Normal file
@ -0,0 +1 @@
|
||||
#include <string.h>
|
2
contrib/linux-kernel/test/include/linux/types.h
Normal file
2
contrib/linux-kernel/test/include/linux/types.h
Normal file
@ -0,0 +1,2 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
Reference in New Issue
Block a user