2 ** Copyright 2002, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
5 #include <sys/syscalls.h>
7 #include "InputDevice.h"
11 return _kern_thread_resume_thread(_kern_thread_create_thread("InputDevice", &ThreadEntry
, this));
14 int InputDevice::ThreadEntry(void *_dev
)
16 InputDevice
*dev
= (InputDevice
*)_dev
;