Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Process exiting & thread termination. IMPORTANT NOTE FOLLOWS. | Alex Auvolat | 2015-03-04 | 1 | -0/+13 |
| | | | | | | | | 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. | ||||
* | Several things : | Alex Auvolat | 2015-02-19 | 1 | -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) | ||||
* | Add btree_remove_v to selectively remove bindings that have a key | Alex Auvolat | 2015-02-14 | 1 | -0/+55 |
| | |||||
* | Add lower/upper bound test ; fix id_key_cmp_fun. | Alex Auvolat | 2015-02-14 | 2 | -1/+2 |
| | |||||
* | Add first btree test ; fix first btree test. | Alex Auvolat | 2015-02-14 | 1 | -3/+3 |
| | |||||
* | Add binary tree implementation. NOT TESTED, FULL OF BUGS. | Alex Auvolat | 2015-02-14 | 4 | -45/+362 |
| | |||||
* | Change hashtbl memory freeing method | Alex Auvolat | 2015-02-14 | 1 | -19/+39 |
| | |||||
* | Reorganize code in preparation for user apps. | Alex Auvolat | 2015-02-13 | 2 | -0/+183 |