From afef4a4fae829061730fec5e8be861e6e236020e Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Mon, 24 Oct 2022 22:50:37 -0700 Subject: executor: remove a few #defines which are not used any longer --- executor/executor.cc | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'executor/executor.cc') diff --git a/executor/executor.cc b/executor/executor.cc index 89fd19ab9..585dd6f66 100644 --- a/executor/executor.cc +++ b/executor/executor.cc @@ -24,25 +24,15 @@ #if defined(__GNUC__) #define SYSCALLAPI #define NORETURN __attribute__((noreturn)) -#define ALIGNED(N) __attribute__((aligned(N))) #define PRINTF(fmt, args) __attribute__((format(printf, fmt, args))) -#define INPUT_DATA_ALIGNMENT 64 << 10 #else // Assuming windows/cl. #define SYSCALLAPI WINAPI #define NORETURN __declspec(noreturn) -#define INPUT_DATA_ALIGNMENT 4 << 10 -#define ALIGNED(N) __declspec(align(N)) // here we are not aligning the value because of msvc reporting the value as an illegal value #define PRINTF(fmt, args) #define __thread __declspec(thread) #endif -#if GOOS_openbsd -#define MUTABLE __attribute__((section(".openbsd.mutable"))) -#else -#define MUTABLE -#endif - #ifndef GIT_REVISION #define GIT_REVISION "unknown" #endif -- cgit mrf-deployment