aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/core/idt.c
Commit message (Collapse)AuthorAgeFilesLines
* Begin work on GIP (Graphics Initiation Protocol)Alex Auvolat2015-03-111-1/+1
|
* Things are happenning ; lots of bugs.Alex Auvolat2015-03-101-1/+1
|
* Partial implement VFS pager (enough for ISO9660!)Alex Auvolat2015-03-091-1/+13
| | | | Also add some debugging facilities (especially stack trace).
* Implement select ; add two tests for channels.Alex Auvolat2015-03-081-5/+10
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-041-0/+15
| | | | | | | | Threads may now communicate via wait_on(void* ressource) and resume_on (void* ressource). Previous pause() is replaced by wait_on(current_thread) and resume(thread) by resume_on(thread). wait_on(x) may return false, indicating that the reason for returning is NOT that resume_on(x) was called but something else happenned. Typically false indicates that the curent thread is being killed and must terminate its kernel-land processing as soon as possible.
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-021-0/+4
|
* Add PCI IDE driver (only PIO mode, no DMA yet.)Alex Auvolat2015-02-241-0/+1
|
* Several things :Alex Auvolat2015-02-191-1/+1
| | | | | | | - disambiguate syscall.h : kernel syscall.h moved to sct.h - fix btree_remove_v !! (munmap fucked up stuff before) - make nullfs's directory listing non-exclusive (it actually copies the listing on open() and readdir()'s from that copy)
* Begin implementation of syscalls.Alex Auvolat2015-02-131-5/+5
|
* Implement some handling of user stuff...Alex Auvolat2015-02-131-4/+9
|
* Cleanup output.Alex Auvolat2015-02-131-2/+1
|
* Reorganize all.Alex Auvolat2015-02-091-0/+253