RabbitECUTeensyMCUXpresso/source/OS/THREAD.h

28 lines
1.2 KiB
C

/******************************************************************************/
/* Copyright (c) 2016 MD Automotive Controls. Original Work. */
/* License: http://www.gnu.org/licenses/gpl.html GPL version 2 or higher */
/******************************************************************************/
/* CONTEXT:KERNEL */
/* PACKAGE TITLE: THREAD Header File */
/* DESCRIPTION: This code provides thread stack function declarations */
/* */
/* FILE NAME: THREAD.h */
/* REVISION HISTORY: 28-03-2016 | 1.0 | Initial revision */
/* */
/******************************************************************************/
#ifndef THREAD_H
#define THREAD_H
#include <SYS.h>
#include <TASK.h>
#include <TYPES.h>
#include "TASKAPI.h"
#include "tqueue.h"
uint32* THREAD_pu32GetThreadStack(tq_struct*);
void THREAD_vStart(uint32* const pu32Stat);
#endif // THREAD_H