aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/core/worker.c
Commit message (Collapse)AuthorAgeFilesLines
* Add delta wrt. function in stack dumpAlex Auvolat2016-07-131-1/+1
|
* Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵Alex Auvolat2015-03-111-11/+16
| | | | waiters.
* Add two entropy sources. Warning: prng is not secure in any way, I have no ↵Alex Auvolat2015-03-081-0/+3
| | | | knowlege of such things.
* Update readme ; change time-related function names.Alex Auvolat2015-03-071-2/+2
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-041-3/+6
| | | | | | | | 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.
* Implement process termination and cleaning up (not completely though)Alex Auvolat2015-03-031-0/+1
|
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-021-1/+1
|
* Add kernel worker threads for handling various tasks (eg. interrupts)Alex Auvolat2015-02-191-0/+100