| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*----------------------------------------------------------------------------
- * CMSIS-RTOS - RTX
- *----------------------------------------------------------------------------
- * Name: RT_SYSTEM.H
- * Purpose: System Task Manager definitions
- * Rev.: V4.79
- *----------------------------------------------------------------------------
- *
- * Copyright (c) 1999-2009 KEIL, 2009-2017 ARM Germany GmbH. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *---------------------------------------------------------------------------*/
- /* Variables */
- #define os_psq ((P_PSQ)&os_fifo)
- extern S32 os_tick_irqn;
- /* Functions */
- extern U32 rt_suspend (void);
- extern void rt_resume (U32 sleep_time);
- extern void rt_tsk_lock (void);
- extern void rt_tsk_unlock (void);
- extern void rt_psh_req (void);
- extern void rt_pop_req (void);
- extern void rt_systick (void);
- extern void rt_stk_check (void);
- /*----------------------------------------------------------------------------
- * end of file
- *---------------------------------------------------------------------------*/
|