Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change thread waiting technology. Slower but does not do crappy things like ↵ | Alex Auvolat | 2015-03-11 | 1 | -0/+4 |
| | | | | malloc at impractical places. | ||||
* | Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵ | Alex Auvolat | 2015-03-11 | 1 | -1/+1 |
| | | | | waiters. | ||||
* | Fix process exiting. | Alex Auvolat | 2015-03-11 | 1 | -0/+1 |
| | |||||
* | Implement select ; add two tests for channels. | Alex Auvolat | 2015-03-08 | 1 | -1/+3 |
| | |||||
* | Add previous notice to thread.h | Alex Auvolat | 2015-03-04 | 1 | -0/+8 |
| | |||||
* | Process exiting & thread termination. IMPORTANT NOTE FOLLOWS. | Alex Auvolat | 2015-03-04 | 1 | -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 Auvolat | 2015-03-03 | 1 | -2/+3 |
| | |||||
* | Setup critical section management for parts that must not be interrupted. | Alex Auvolat | 2015-03-02 | 1 | -2/+12 |
| | |||||
* | Change mode of operation for mmap_file (see readme) | Alex Auvolat | 2015-02-20 | 1 | -2/+3 |
| | |||||
* | Add kernel worker threads for handling various tasks (eg. interrupts) | Alex Auvolat | 2015-02-19 | 1 | -2/+3 |
| | |||||
* | Implement some handling of user stuff... | Alex Auvolat | 2015-02-13 | 1 | -1/+1 |
| | |||||
* | Add stubs for process-related functions. | Alex Auvolat | 2015-02-13 | 1 | -4/+2 |
| | |||||
* | Prepare for user memory management and usermode code | Alex Auvolat | 2015-02-13 | 1 | -0/+6 |
| | |||||
* | Cleanup output. | Alex Auvolat | 2015-02-13 | 1 | -1/+1 |
| | |||||
* | Reorganize all. | Alex Auvolat | 2015-02-09 | 1 | -0/+46 |