aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorGreg Steuck <greg@nest.cx>2022-10-24 22:50:37 -0700
committerGreg Steuck <blackgnezdo@gmail.com>2022-10-25 09:40:24 -0700
commitafef4a4fae829061730fec5e8be861e6e236020e (patch)
tree88bc482a5ab8ffbfbf01da490c85b08ea8bff50f /executor
parent2c6621289f027c498f3a06f8e9dc2ded7c5ea8dd (diff)
executor: remove a few #defines which are not used any longer
Diffstat (limited to 'executor')
-rw-r--r--executor/executor.cc10
1 files changed, 0 insertions, 10 deletions
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