/** Copyright 2008-2011, Ingo Weinhold, ingo_weinhold@gmx.de.* Copyright 2007, Travis Geiselbrecht. All rights reserved.* Distributed under the terms of the MIT License.*/#include <commpage.h>#include "x86_signals.h"#include "x86_syscalls.h"status_tarch_commpage_init(void){return B_OK;}status_tarch_commpage_init_post_cpus(void){// select the optimum syscall mechanism and patch the commpagex86_initialize_syscall();// initialize the signal handler code in the commpagex86_initialize_commpage_signal_handler();return B_OK;}