1/*
2 * Copyright 2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_ARCH_X86_SIGNALS_H
6#define _KERNEL_ARCH_X86_SIGNALS_H
7
8
9#include <SupportDefs.h>
10
11
12void	x86_initialize_commpage_signal_handler();
13#ifndef __x86_64__
14addr_t	x86_get_user_signal_handler_wrapper(bool beosHandler,
15	void* commPageAddress);
16#endif
17
18
19#endif	// _KERNEL_ARCH_X86_SIGNALS_H
20