mirror of
https://github.com/drasko/codezero.git
synced 2026-04-04 19:19:03 +02:00
Changes between 16 March 2010 - 6 April 2010
Mutex system call fixed for multiple contenders Userspace irq support extended to keyboard/mouse. Scheduler modified for real-time irq tasks
This commit is contained in:
@@ -1,18 +1,16 @@
|
||||
/*
|
||||
* Copyright (C) 2010 B Labs Ltd.
|
||||
*
|
||||
* By Bahadir Balban
|
||||
*/
|
||||
#ifndef __IPI_H__
|
||||
#define __IPI_H__
|
||||
|
||||
/*
|
||||
* Copyright 2010 B Labs.Ltd.
|
||||
*
|
||||
* Author: Prem Mallappa <prem.mallappa@b-labs.co.uk>
|
||||
*
|
||||
* Description:
|
||||
*/
|
||||
|
||||
|
||||
#include <l4/generic/irq.h>
|
||||
|
||||
int ipi_handler(struct irq_desc *desc);
|
||||
|
||||
|
||||
#define IPI_TIMER_EVENT 0
|
||||
|
||||
#endif /* __IPI_H__ */
|
||||
|
||||
@@ -34,7 +34,7 @@ static inline void smp_start_cores(void) {}
|
||||
|
||||
void init_smp(void);
|
||||
void arch_smp_spin(void);
|
||||
void arch_send_ipi(u32 cpu, int ipi);
|
||||
void smp_send_ipi(unsigned int cpumask, int ipi_num);
|
||||
void platform_smp_init(int ncpus);
|
||||
int platform_smp_start(int cpu, void (*start)(int));
|
||||
void secondary_init_platform(void);
|
||||
|
||||
Reference in New Issue
Block a user