Differences From Artifact [1f91f150ef]:
- File kcore/stop.fn.c — part of check-in [f85e6a07dd] at 2019-08-20 22:54:49 on branch trunk — reorganize posix assembly code (user: lexi, size: 857) [annotate] [blame] [check-ins using]
- File mod/kcore/stop.fn.c — part of check-in [14172a910a] at 2019-08-21 06:00:24 on branch trunk — move modules to a subdirectory in order to keep the directory tree organized and make room for OS-specific build files (user: lexi, size: 857) [annotate] [blame] [check-ins using]
To Artifact [62a3920f4e]:
- File mod/kcore/stop.fn.c — part of check-in [e42b590b45] at 2019-08-24 23:02:13 on branch trunk — stop attempting to auto-detect system constants during build process, and maintain os/arch-specific tables instead (user: lexi, size: 851) [annotate] [blame] [check-ins using]
5 5 6 6 #include <k/core.h> 7 7 #include <k/def.h> // so we know what system this is 8 8 #include <k/type.h> 9 9 #ifdef KFenv_posix 10 10 # define KFplatform_define_types 11 11 # define KFplatform_define_constants 12 -# include <posix/posix.h> 12 +# include <posix.h> 13 13 #endif 14 14 15 15 /* this manual redefinition is necessary to stop gcc 16 16 * bitching that kstop returns, which it def does not */ 17 17 noreturn extern struct k_platform_syscall_answer 18 18 k_platform_syscall(enum k_platform_syscall call, u8 valency, 19 19 k_platform_syscall_arg args[]);