aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/core
Commit message (Expand)AuthorAgeFilesLines
* Change thread waiting technology. Slower but does not do crappy things like m...Alex Auvolat2015-03-114-47/+37
* Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ...Alex Auvolat2015-03-113-36/+49
* Add pckbd driver.Alex Auvolat2015-03-111-1/+3
* Begin work on GIP (Graphics Initiation Protocol)Alex Auvolat2015-03-111-1/+1
* Fix process exiting.Alex Auvolat2015-03-111-8/+15
* Add mutex to pciide driver (fixes some stuff)Alex Auvolat2015-03-101-0/+2
* Things are happenning ; lots of bugs.Alex Auvolat2015-03-101-1/+1
* Pass more information to FS driver on some ops (TODO bugcheck).Alex Auvolat2015-03-101-0/+1
* VESA mode setting ; displays kogata logo!Alex Auvolat2015-03-091-1/+4
* Implement V86 monitor and VESA mode detection.Alex Auvolat2015-03-093-2/+4
* Remove kernel region pf handlers ; fix forget-to-zero-out bug.Alex Auvolat2015-03-094-25/+22
* Partial implement VFS pager (enough for ISO9660!)Alex Auvolat2015-03-094-4/+17
* Nullfs now uses pager.Alex Auvolat2015-03-091-3/+6
* Implement select ; add two tests for channels.Alex Auvolat2015-03-082-33/+68
* Add two entropy sources. Warning: prng is not secure in any way, I have no kn...Alex Auvolat2015-03-083-3/+14
* Add PRNGAlex Auvolat2015-03-082-0/+48
* Implement wait and exec.Alex Auvolat2015-03-071-1/+1
* Update readme ; change time-related function names.Alex Auvolat2015-03-072-4/+4
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-043-23/+111
* Implement process termination and cleaning up (not completely though)Alex Auvolat2015-03-032-2/+54
* More uses of free_some_memory()Alex Auvolat2015-03-022-3/+17
* No lazy allocation of kernel memory. Placeholder for pmem freeing routine.Alex Auvolat2015-03-024-12/+56
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-023-29/+38
* Fix calculations in iso9660_fh_readAlex Auvolat2015-02-241-16/+0
* Complete ISO9660 impl ; some strange wtf is going on.Alex Auvolat2015-02-241-0/+16
* Fix a bug (dispose in pciide should not exist)Alex Auvolat2015-02-241-1/+1
* Change VFS a bit : the root directory of a fs is now a pointer. Fix tests.Alex Auvolat2015-02-241-4/+4
* Make way for ISO 9660 driver.Alex Auvolat2015-02-241-9/+118
* Add PCI IDE driver (only PIO mode, no DMA yet.)Alex Auvolat2015-02-242-0/+3
* PCI enumeration ; rename dev:/ to io:/Alex Auvolat2015-02-241-11/+16
* Change mode of operation for mmap_file (see readme)Alex Auvolat2015-02-202-10/+6
* Think a bit ; ioctls only on open file descriptors.Alex Auvolat2015-02-201-15/+2
* Add kernel worker threads for handling various tasks (eg. interrupts)Alex Auvolat2015-02-193-6/+132
* Userland test infrastructureAlex Auvolat2015-02-191-1/+1
* Several things :Alex Auvolat2015-02-192-3/+3
* Fix mchmap. Lesson : invalid pointer dereferences happen! with unexpected res...Alex Auvolat2015-02-141-7/+9
* Many things :Alex Auvolat2015-02-145-57/+33
* Add first btree test ; fix first btree test.Alex Auvolat2015-02-142-3/+3
* Rearrange testing architecture : just type 'make run_tests'Alex Auvolat2015-02-142-190/+22
* Change hashtbl memory freeing methodAlex Auvolat2015-02-141-4/+4
* Begin implementation of syscalls.Alex Auvolat2015-02-133-7/+10
* Implement ELF loading ; arrange so that user processes run.Alex Auvolat2015-02-133-14/+29
* Reorganize code in preparation for user apps.Alex Auvolat2015-02-131-4/+2
* Implement some handling of user stuff...Alex Auvolat2015-02-133-7/+12
* Implement switching to usermode.Alex Auvolat2015-02-132-2/+24
* Add stubs for process-related functions.Alex Auvolat2015-02-131-5/+13
* Prepare for user memory management and usermode codeAlex Auvolat2015-02-133-46/+78
* Isolate cmdline test ; rename tests.Alex Auvolat2015-02-131-16/+27
* Cleanup output.Alex Auvolat2015-02-133-50/+76
* Begin implementation of nullfs.Alex Auvolat2015-02-121-3/+1