exec.h 398 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Process execution related definitions for the Hexagon architecture
  4. *
  5. * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
  6. */
  7. #ifndef _ASM_EXEC_H
  8. #define _ASM_EXEC_H
  9. /* Should probably shoot for an 8-byte aligned stack pointer */
  10. #define STACK_MASK (~7)
  11. #define arch_align_stack(x) (x & STACK_MASK)
  12. #endif /* _ASM_EXEC_H */