1 parent 288ec84 commit 808ca67Copy full SHA for 808ca67
2 files changed
ports/unix/Makefile
@@ -149,6 +149,7 @@ SRC_C = \
149
alloc.c \
150
coverage.c \
151
fatfs_port.c \
152
+ supervisor/stub/stack.c \
153
supervisor/shared/translate.c \
154
$(SRC_MOD)
155
supervisor/stub/stack.c
@@ -24,11 +24,7 @@
24
* THE SOFTWARE.
25
*/
26
27
-#include <stdbool.h>
28
-#include <stdint.h>
29
-
30
-void allocate_stack(void) {
31
-}
+#include "supervisor/shared/stack.h"
32
33
bool stack_ok(void) {
34
return true;
@@ -44,6 +40,7 @@ void stack_resize(void) {
44
40
}
45
41
46
42
void set_next_stack_size(uint32_t size) {
43
+ (void) size;
47
48
49
uint32_t get_current_stack_size(void) {
0 commit comments