mirror of
https://github.com/drasko/codezero.git
synced 2026-09-02 11:40:06 +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:
@@ -32,6 +32,16 @@ struct pager {
|
||||
unsigned long stack_address;
|
||||
unsigned long memsize;
|
||||
struct cap_list cap_list;
|
||||
|
||||
/*
|
||||
* Section markings,
|
||||
* We dont care for other types of sections,
|
||||
* RO will be included inside RX.
|
||||
*/
|
||||
unsigned long rw_sections_start;
|
||||
unsigned long rw_sections_end;
|
||||
unsigned long rx_sections_start;
|
||||
unsigned long rx_sections_end;
|
||||
};
|
||||
|
||||
|
||||
@@ -72,6 +82,16 @@ struct pager_info {
|
||||
unsigned long start_address;
|
||||
unsigned long stack_address;
|
||||
|
||||
/*
|
||||
* Section markings,
|
||||
* We dont care for other types of sections,
|
||||
* RO will be included inside RX.
|
||||
*/
|
||||
unsigned long rw_sections_start;
|
||||
unsigned long rw_sections_end;
|
||||
unsigned long rx_sections_start;
|
||||
unsigned long rx_sections_end;
|
||||
|
||||
/* Number of capabilities defined */
|
||||
int ncaps;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user