diff options
author | isiora <none@example.com> | 2018-03-07 16:18:24 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2018-03-07 16:18:24 +0000 |
commit | 9108cdb610d01aba6f94beeca291c6b837cd44cc (patch) | |
tree | 660a866e8950df984a5533719d084a7a86ee32d0 /os | |
parent | 88a439033e9e573d465789409bcfcc225749f47f (diff) | |
download | ChibiOS-9108cdb610d01aba6f94beeca291c6b837cd44cc.tar.gz ChibiOS-9108cdb610d01aba6f94beeca291c6b837cd44cc.tar.bz2 ChibiOS-9108cdb610d01aba6f94beeca291c6b837cd44cc.zip |
Fixed weak definitions.
git-svn-id: https://svn.code.sf.net/p/chibios/svn2/trunk@11618 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os')
-rw-r--r-- | os/common/ports/ARMCAx-TZ/chtssi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/os/common/ports/ARMCAx-TZ/chtssi.c b/os/common/ports/ARMCAx-TZ/chtssi.c index 1d0c2db79..068430c24 100644 --- a/os/common/ports/ARMCAx-TZ/chtssi.c +++ b/os/common/ports/ARMCAx-TZ/chtssi.c @@ -37,6 +37,11 @@ /* Module exported variables. */
/*===========================================================================*/
+/* */
+
+CC_WEAK ts_state_t ts_state[TS_MAX_SVCS];
+CC_WEAK const thread_descriptor_t ts_configs[TS_MAX_SVCS];
+
/* The reference to the suspended nsec main thread.*/
thread_reference_t _ns_thread = NULL;
|