mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 11:23:16 +01:00
Mutex system call fixed for multiple contenders Userspace irq support extended to keyboard/mouse. Scheduler modified for real-time irq tasks
14 lines
288 B
C
14 lines
288 B
C
/*
|
|
* Platform specific ties between drivers and generic APIs used by the kernel.
|
|
* E.g. system timer and console.
|
|
*
|
|
* Copyright (C) Bahadir Balban 2007
|
|
*/
|
|
|
|
#ifndef __PB926_PLATFORM_H__
|
|
#define __PB926_PLATFORM_H__
|
|
|
|
void platform_timer_start(void);
|
|
|
|
#endif /* __PB926_PLATFORM_H__ */
|