aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/include/thread.h
Commit message (Collapse)AuthorAgeFilesLines
* Change thread waiting technology. Slower but does not do crappy things like ↵Alex Auvolat2015-03-111-0/+4
| | | | malloc at impractical places.
* Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵Alex Auvolat2015-03-111-1/+1
| | | | waiters.
* Fix process exiting.Alex Auvolat2015-03-111-0/+1
|
* Implement select ; add two tests for channels.Alex Auvolat2015-03-081-1/+3
|
* Add previous notice to thread.hAlex Auvolat2015-03-041-0/+8
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-041-3/+8
| | | | | | | | 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.
* Add prototypes for process management...Alex Auvolat2015-03-031-2/+3
|
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-021-2/+12
|
* Change mode of operation for mmap_file (see readme)Alex Auvolat2015-02-201-2/+3
|
* Add kernel worker threads for handling various tasks (eg. interrupts)Alex Auvolat2015-02-191-2/+3
|
* Implement some handling of user stuff...Alex Auvolat2015-02-131-1/+1
|
* Add stubs for process-related functions.Alex Auvolat2015-02-131-4/+2
|
* Prepare for user memory management and usermode codeAlex Auvolat2015-02-131-0/+6
|
* Cleanup output.Alex Auvolat2015-02-131-1/+1
|
* Reorganize all.Alex Auvolat2015-02-091-0/+46