aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/user/syscall.c
Commit message (Collapse)AuthorAgeFilesLines
* Terminal inside Lua window managerAlex Auvolat2018-04-011-0/+1
|
* Grids & lua debuggingAlex Auvolat2017-05-091-3/+2
|
* Fix stuffAlex Auvolat2016-07-301-1/+0
|
* Release mode (enables some optimizations) ; fix tests.Alex Auvolat2016-07-301-0/+1
|
* Fix sme warnings...Alex Auvolat2016-07-141-4/+4
|
* Add mutexes everywhere ; spam debug log (sorry)Alex Auvolat2015-03-141-1/+1
|
* Change thread waiting technology. Slower but does not do crappy things like ↵Alex Auvolat2015-03-111-40/+40
| | | | malloc at impractical places.
* Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵Alex Auvolat2015-03-111-3/+3
| | | | waiters.
* Clear screen from GIP client (in login)Alex Auvolat2015-03-111-1/+5
|
* Add mk_shm syscall ; replace get_mode by fctl.Alex Auvolat2015-03-101-3/+26
|
* Implement select ; add two tests for channels.Alex Auvolat2015-03-081-0/+54
|
* Implement missing syscalls.Alex Auvolat2015-03-081-0/+83
|
* Implement wait and exec.Alex Auvolat2015-03-071-4/+68
|
* Implement some missing syscalls.Alex Auvolat2015-03-071-20/+173
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-041-1/+1
| | | | | | | | 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-2/+2
|
* Add prototypes for process management...Alex Auvolat2015-03-031-5/+0
|
* Change VFS interface : handles no longer visible to underlying FS.Alex Auvolat2015-03-021-2/+2
|
* Implement fs_subfs (it's simple, really) ; add placeholders for more syscallsAlex Auvolat2015-02-241-0/+79
|
* Think a bit ; ioctls only on open file descriptors.Alex Auvolat2015-02-201-27/+2
|
* Add kernel worker threads for handling various tasks (eg. interrupts)Alex Auvolat2015-02-191-0/+6
|
* Add syscall for ioctl on open handleAlex Auvolat2015-02-191-0/+10
|
* Several things :Alex Auvolat2015-02-191-2/+2
| | | | | | | - 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)
* Implement basic syscalls...Alex Auvolat2015-02-191-0/+220
|
* Implement userspace mallocAlex Auvolat2015-02-191-7/+34
|
* Change a bit of structureAlex Auvolat2015-02-141-9/+19
|
* Begin implementation of syscalls.Alex Auvolat2015-02-131-0/+64