cache.h 497 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __SANDBOX_CACHE_H__
  7. #define __SANDBOX_CACHE_H__
  8. /*
  9. * For native compilation of the sandbox we should still align
  10. * the contents of stack buffers to something reasonable. The
  11. * GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum
  12. * required alignment for any basic type. This seems reasonable.
  13. */
  14. #define ARCH_DMA_MINALIGN __BIGGEST_ALIGNMENT__
  15. #endif /* __SANDBOX_CACHE_H__ */