This commit is contained in:
Scott Shawcroft 2018-12-06 17:12:30 -08:00
parent 288ec84c21
commit 808ca676b6
No known key found for this signature in database
GPG Key ID: FD0EDC4B6C53CA59
2 changed files with 3 additions and 5 deletions

View File

@ -149,6 +149,7 @@ SRC_C = \
alloc.c \
coverage.c \
fatfs_port.c \
supervisor/stub/stack.c \
supervisor/shared/translate.c \
$(SRC_MOD)

View File

@ -24,11 +24,7 @@
* THE SOFTWARE.
*/
#include <stdbool.h>
#include <stdint.h>
void allocate_stack(void) {
}
#include "supervisor/shared/stack.h"
bool stack_ok(void) {
return true;
@ -44,6 +40,7 @@ void stack_resize(void) {
}
void set_next_stack_size(uint32_t size) {
(void) size;
}
uint32_t get_current_stack_size(void) {