aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/core
Commit message (Collapse)AuthorAgeFilesLines
* Mouse codeAlex Auvolat2017-04-241-1/+2
|
* Fix stuffAlex Auvolat2016-07-301-0/+2
|
* Release mode (enables some optimizations) ; fix tests.Alex Auvolat2016-07-301-2/+6
|
* Use elf symbol table instead of map file for kernelAlex Auvolat2016-07-302-32/+31
|
* Add Lua source, not compiled yet as libc/libm functions remain unimplementedAlex Auvolat2016-07-151-2/+2
|
* Fix nasty task switching buAlex Auvolat2016-07-155-14/+21
|
* Fix sme warnings...Alex Auvolat2016-07-143-8/+17
|
* Integration of scan-build and splintAlex Auvolat2016-07-141-0/+2
|
* Add delta wrt. function in stack dumpAlex Auvolat2016-07-134-9/+21
|
* Fix testsAlex Auvolat2016-07-131-1/+1
|
* Factorize region allocator between kernel and user processes (same code was ↵Alex Auvolat2015-03-142-372/+10
| | | | there twice)
* Begin implement escape sequence handling in terminal.Alex Auvolat2015-03-143-2/+12
|
* Fix blocking channel && channel write on circular-overflow. (see ipc.c)Alex Auvolat2015-03-141-1/+1
|
* Fix region allocator (see changes in region.c!) ; debug spam control.Alex Auvolat2015-03-143-14/+28
|
* Add mutexes everywhere ; spam debug log (sorry)Alex Auvolat2015-03-143-16/+18
|
* Add missing mutex-locking in procesc.c ; discovered design fault somewhere.Alex Auvolat2015-03-135-16/+31
|
* Include kernel.map in tests.Alex Auvolat2015-03-111-0/+3
|
* Add keyboard handling code. New font thanks to Muazzam from OSDev!Alex Auvolat2015-03-111-1/+1
|
* Add better stack tracing technology (now uses kernel memory map!)Alex Auvolat2015-03-117-35/+100
|
* Change thread waiting technology. Slower but does not do crappy things like ↵Alex Auvolat2015-03-114-47/+37
| | | | malloc at impractical places.
* Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵Alex Auvolat2015-03-113-36/+49
| | | | waiters.
* 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
| | | | Also add some debugging facilities (especially stack trace).
* 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 ↵Alex Auvolat2015-03-083-3/+14
| | | | knowlege of such things.
* 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
| | | | | | | | 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-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
|