File indexing completed on 2025-05-11 08:24:53
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036 #ifndef _TC_USEREXT_H
0037 #define _TC_USEREXT_H
0038
0039 #include <rtems.h>
0040
0041 #ifdef __cplusplus
0042 extern "C" {
0043 #endif
0044
0045 void ThreadBeginExtension0( rtems_tcb *executing );
0046
0047 bool ThreadCreateExtension0( rtems_tcb *executing, rtems_tcb *created );
0048
0049 void ThreadDeleteExtension0( rtems_tcb *executing, rtems_tcb *deleted );
0050
0051 void ThreadExittedExtension0( rtems_tcb *executing );
0052
0053 void ThreadRestartExtension0( rtems_tcb *executing, rtems_tcb *restarted );
0054
0055 void ThreadStartExtension0( rtems_tcb *executing, rtems_tcb *started );
0056
0057 void ThreadSwitchExtension0( rtems_tcb *executing, rtems_tcb *heir );
0058
0059 void ThreadTerminateExtension0( rtems_tcb *executing );
0060
0061 void FatalExtension0(
0062 rtems_fatal_source source,
0063 bool always_set_to_false,
0064 rtems_fatal_code code
0065 );
0066
0067 void ThreadBeginExtension1( rtems_tcb *executing );
0068
0069 bool ThreadCreateExtension1( rtems_tcb *executing, rtems_tcb *created );
0070
0071 void ThreadDeleteExtension1( rtems_tcb *executing, rtems_tcb *deleted );
0072
0073 void ThreadExittedExtension1( rtems_tcb *executing );
0074
0075 void ThreadRestartExtension1( rtems_tcb *executing, rtems_tcb *restarted );
0076
0077 void ThreadStartExtension1( rtems_tcb *executing, rtems_tcb *started );
0078
0079 void ThreadSwitchExtension1( rtems_tcb *executing, rtems_tcb *heir );
0080
0081 void ThreadTerminateExtension1( rtems_tcb *executing );
0082
0083 void FatalExtension1(
0084 rtems_fatal_source source,
0085 bool always_set_to_false,
0086 rtems_fatal_code code
0087 );
0088
0089 #ifdef __cplusplus
0090 }
0091 #endif
0092
0093 #endif