diff options
Diffstat (limited to 'runtime/user')
-rw-r--r-- | runtime/user/emul.h | 3 | ||||
-rw-r--r-- | runtime/user/runtime.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/runtime/user/emul.h b/runtime/user/emul.h index fa8d9fb3..2821e8ac 100644 --- a/runtime/user/emul.h +++ b/runtime/user/emul.h @@ -19,9 +19,6 @@ int vscnprintf(char *buf, size_t size, const char *fmt, va_list args) #define for_each_cpu(cpu) \ for (cpu = 0; cpu < NR_CPUS; cpu++) -// just to eliminate compile errors -unsigned long volatile __jiffy_data jiffies = 12345678; - int _processor_number = 0; #define smp_processor_id() _processor_number #define get_cpu() _processor_number diff --git a/runtime/user/runtime.h b/runtime/user/runtime.h index b13f2cc6..725147a4 100644 --- a/runtime/user/runtime.h +++ b/runtime/user/runtime.h @@ -4,6 +4,8 @@ * @brief Main include file for runtime functions. */ +#define _STP_TEST_ 1 + #define __KERNEL__ #include <linux/config.h> #undef CONFIG_NR_CPUS |