Changes in kernel/arch/abs32le/src/abs32le.c [36df4109:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/src/abs32le.c
r36df4109 r9d58539 51 51 #include <memstr.h> 52 52 53 static void abs32le_post_mm_init(void);54 55 arch_ops_t abs32le_ops = {56 .post_mm_init = abs32le_post_mm_init,57 };58 59 arch_ops_t *arch_ops = &abs32le_ops;60 61 53 char memcpy_from_uspace_failover_address; 62 54 char memcpy_to_uspace_failover_address; 63 55 64 void abs32le_post_mm_init(void) 56 void arch_pre_mm_init(void) 57 { 58 } 59 60 void arch_post_mm_init(void) 65 61 { 66 62 if (config.cpu_active == 1) { … … 73 69 } 74 70 71 void arch_post_cpu_init() 72 { 73 } 74 75 void arch_pre_smp_init(void) 76 { 77 } 78 79 void arch_post_smp_init(void) 80 { 81 } 82 75 83 void calibrate_delay_loop(void) 76 84 { 85 } 86 87 sysarg_t sys_tls_set(uintptr_t addr) 88 { 89 return EOK; 77 90 } 78 91
Note:
See TracChangeset
for help on using the changeset viewer.