1 /* 2 * Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 /*! 8 @addtogroup cc_pal_abort 9 @{ 10 */ 11 12 /*! 13 @file 14 @brief This file includes all PAL APIs. 15 */ 16 17 #ifndef _CC_PAL_ABORT_H 18 #define _CC_PAL_ABORT_H 19 20 21 #include "cc_pal_abort_plat.h" 22 23 24 /*! 25 @brief This function performs the "Abort" operation. 26 27 Must be implemented according to platform and OS. 28 */ 29 void CC_PalAbort( 30 /*! [in] An optional parameter for a string of chars to indicate the abort 31 operation. */ 32 const char * exp 33 ); 34 35 /*! 36 @} 37 */ 38 #endif 39 40