aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/user/process.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix stupid forget-to-unreference bug.Alex Auvolat2015-03-041-1/+5
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-041-40/+65
| | | | | | | | 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.
* TY tito.Alex Auvolat2015-03-031-0/+1
|
* Implement process termination and cleaning up (not completely though)Alex Auvolat2015-03-031-23/+135
|
* Add prototypes for process management...Alex Auvolat2015-03-031-5/+34
|
* Change VFS interface : handles no longer visible to underlying FS.Alex Auvolat2015-03-021-2/+3
|
* More uses of free_some_memory()Alex Auvolat2015-03-021-4/+3
|
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-021-1/+1
|
* Change mode of operation for mmap_file (see readme)Alex Auvolat2015-02-201-19/+16
|
* Implement basic syscalls...Alex Auvolat2015-02-191-1/+31
|
* Implement userspace mallocAlex Auvolat2015-02-191-3/+6
|
* Fix mchmap. Lesson : invalid pointer dereferences happen! with unexpected ↵Alex Auvolat2015-02-141-1/+1
| | | | results.
* Many things :Alex Auvolat2015-02-141-3/+40
| | | | | | - fix context switching (it actually worked only because of optimizations!) - complete mchmap implementation - adjust elf parser to load binaries correctly even without FM_MMAP
* Use btrees to find memory regions.Alex Auvolat2015-02-141-14/+32
|
* Add btree_remove_v to selectively remove bindings that have a keyAlex Auvolat2015-02-141-0/+1
|
* Change hashtbl memory freeing methodAlex Auvolat2015-02-141-2/+2
|
* Change a bit of structureAlex Auvolat2015-02-141-19/+0
|
* Begin implementation of syscalls.Alex Auvolat2015-02-131-1/+25
|
* Implement ELF loading ; arrange so that user processes run.Alex Auvolat2015-02-131-0/+8
|
* Implement some handling of user stuff...Alex Auvolat2015-02-131-37/+145
|
* Implement switching to usermode.Alex Auvolat2015-02-131-4/+42
|
* Add stubs for process-related functions.Alex Auvolat2015-02-131-1/+124
|
* Start work on filesystems.Alex Auvolat2015-02-091-20/+3
|
* Reorganize all.Alex Auvolat2015-02-091-0/+30