File tree 10 files changed +0
-140
lines changed
pw_cpu_exception/public/pw_cpu_exception
public/pw_cpu_exception_armv7m
pw_cpu_exception_cortex_m/public/pw_cpu_exception_cortex_m
10 files changed +0
-140
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ declare_args() {
36
36
dir_pw_cli = get_path_info (" pw_cli" , " abspath" )
37
37
dir_pw_containers = get_path_info (" pw_containers" , " abspath" )
38
38
dir_pw_cpu_exception = get_path_info (" pw_cpu_exception" , " abspath" )
39
- dir_pw_cpu_exception_armv7m =
40
- get_path_info (" pw_cpu_exception_armv7m" , " abspath" )
41
39
dir_pw_cpu_exception_cortex_m =
42
40
get_path_info (" pw_cpu_exception_cortex_m" , " abspath" )
43
41
dir_pw_docgen = get_path_info (" pw_docgen" , " abspath" )
Original file line number Diff line number Diff line change 42
42
// Note: applications should almost never invoke this directly; if you do, make
43
43
// sure you know what you are doing.
44
44
PW_EXTERN_C PW_NO_PROLOGUE void pw_cpu_exception_Entry (void );
45
-
46
- // TODO(pwbug/311) Deprecated naming.
47
- PW_EXTERN_C PW_NO_PROLOGUE void pw_CpuExceptionEntry (void );
Original file line number Diff line number Diff line change @@ -52,13 +52,4 @@ PW_USED void pw_cpu_exception_DefaultHandler(pw_cpu_exception_State* state);
52
52
// This calls the currently set handler.
53
53
void pw_cpu_exception_HandleException (void * cpu_state );
54
54
55
- // TODO(pwbug/311) Deprecated naming.
56
- typedef pw_cpu_exception_State pw_CpuExceptionState ;
57
- #define pw_CpuExceptionSetHandler (...) pw_cpu_exception_SetHandler(__VA_ARGS__)
58
- #define pw_CpuExceptionRestoreDefaultHandler (...) \
59
- pw_cpu_exception_RestoreDefaultHandler(__VA_ARGS__)
60
- #define pw_CpuExceptionDefaultHandler (...) \
61
- pw_cpu_exception_DefaultHandler(__VA_ARGS__)
62
- #define pw_HandleCpuException (...) pw_cpu_exception_HandleException(__VA_ARGS__)
63
-
64
55
PW_EXTERN_C_END
Original file line number Diff line number Diff line change 26
26
// backend.
27
27
struct pw_cpu_exception_State ;
28
28
29
- // TODO(pwbug/311) Deprecated naming.
30
- typedef pw_cpu_exception_State pw_CpuExceptionState;
31
-
32
29
namespace pw ::cpu_exception {
33
30
34
31
// Gets raw CPU state as a single contiguous block of data. The particular
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -95,6 +95,3 @@ PW_PACKED(struct) pw_cpu_exception_State {
95
95
// availability of the FPU registers a compile-time configuration when FPU
96
96
// register support is added.
97
97
};
98
-
99
- // TODO(pwbug/311): Deprecated naming.
100
- typedef pw_cpu_exception_State pw_CpuExceptionState;
You can’t perform that action at this time.
0 commit comments