Changes in kernel/arch/abs32le/src/abs32le.c [9d58539:36df4109] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/src/abs32le.c
r9d58539 r36df4109 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 53 61 char memcpy_from_uspace_failover_address; 54 62 char memcpy_to_uspace_failover_address; 55 63 56 void arch_pre_mm_init(void) 57 { 58 } 59 60 void arch_post_mm_init(void) 64 void abs32le_post_mm_init(void) 61 65 { 62 66 if (config.cpu_active == 1) { … … 69 73 } 70 74 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 83 75 void calibrate_delay_loop(void) 84 76 { 85 }86 87 sysarg_t sys_tls_set(uintptr_t addr)88 {89 return EOK;90 77 } 91 78
Note:
See TracChangeset
for help on using the changeset viewer.