RTEMS 6.1-rc7
Loading...
Searching...
No Matches
cpuimpl.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2013 embedded brains GmbH & Co. KG
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#ifndef _RTEMS_SCORE_CPUIMPL_H
16#define _RTEMS_SCORE_CPUIMPL_H
17
18#include <rtems/score/cpu.h>
19
29#define CPU_PER_CPU_CONTROL_SIZE 0
30
31#define CPU_THREAD_LOCAL_STORAGE_VARIANT 10
32
33#ifndef ASM
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39static inline void _CPU_Context_volatile_clobber( uintptr_t pattern )
40{
41 (void) pattern;
42
43 /* TODO */
44}
45
46static inline void _CPU_Context_validate( uintptr_t pattern )
47{
48 (void) pattern;
49
50 while (1) {
51 /* TODO */
52 }
53}
54
55static inline void _CPU_Instruction_illegal( void )
56{
57 __asm__ volatile ( ".word 0" );
58}
59
60static inline void _CPU_Instruction_no_operation( void )
61{
62 __asm__ volatile ( "nop" );
63}
64
65static inline void _CPU_Use_thread_local_storage(
67)
68{
69 (void) context;
70}
71
72static inline void *_CPU_Get_TLS_thread_pointer(
74)
75{
76 (void) context;
77 return NULL;
78}
79
80#ifdef __cplusplus
81}
82#endif
83
84#endif /* ASM */
85
86#endif /* _RTEMS_SCORE_CPUIMPL_H */
87
rtems_termios_device_context * context
Definition: console-config.c:62
Thread register context.
Definition: cpu.h:173