1 /* 2 * Copyright 2009, Johannes Wischert, johanneswi@gmail.com. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include <commpage.h> 8 9 #include <string.h> 10 11 #include <KernelExport.h> 12 13 #include <cpu.h> 14 #include <elf.h> 15 #include <smp.h> 16 17 18 status_t 19 arch_commpage_init(void) 20 { 21 /* no optimized memcpy or anything yet */ 22 /* we don't use it for syscall yet either */ 23 // add syscall to the commpage image 24 // image_id image = get_commpage_image(); 25 #warning ARM:IMPLEMENTME 26 return B_OK; 27 } 28 29 30 status_t 31 arch_commpage_init_post_cpus(void) 32 { 33 #warning ARM:IMPLEMENTME 34 return B_OK; 35 } 36 37