aboutsummaryrefslogtreecommitdiff
path: root/src/kernel
Commit message (Collapse)AuthorAgeFilesLines
* Mouse cursor!Alex Auvolat2017-05-032-2/+34
|
* Mouse codeAlex Auvolat2017-04-244-140/+318
|
* Fix stuffAlex Auvolat2016-07-302-1/+2
|
* Release mode (enables some optimizations) ; fix tests.Alex Auvolat2016-07-303-17/+26
|
* Use elf symbol table instead of map file for kernelAlex Auvolat2016-07-306-36/+61
|
* Move stuff around, againAlex Auvolat2016-07-151-3/+3
|
* 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-147-29/+38
|
* Integration of scan-build and splintAlex Auvolat2016-07-143-1/+7
|
* Add delta wrt. function in stack dumpAlex Auvolat2016-07-135-10/+22
|
* Fix testsAlex Auvolat2016-07-131-1/+1
|
* Migrate to BAM build toolAlex Auvolat2016-07-132-23/+20
|
* Factorize region allocator between kernel and user processes (same code was ↵Alex Auvolat2015-03-143-392/+12
| | | | there twice)
* Begin implement escape sequence handling in terminal.Alex Auvolat2015-03-145-2/+15
|
* Fix write of null length to channel ; fix cat.Alex Auvolat2015-03-141-0/+4
|
* Fix blocking channel && channel write on circular-overflow. (see ipc.c)Alex Auvolat2015-03-143-16/+43
|
* Fix region allocator (see changes in region.c!) ; debug spam control.Alex Auvolat2015-03-147-27/+44
|
* Fix a bug: malloc() with wrong sizeAlex Auvolat2015-03-142-3/+7
|
* Add mutexes everywhere ; spam debug log (sorry)Alex Auvolat2015-03-148-42/+104
|
* Add missing mutex-locking in procesc.c ; discovered design fault somewhere.Alex Auvolat2015-03-136-28/+109
|
* Shell begins to be usefull.Alex Auvolat2015-03-133-4/+4
|
* 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-1112-49/+120
|
* Change thread waiting technology. Slower but does not do crappy things like ↵Alex Auvolat2015-03-116-87/+81
| | | | malloc at impractical places.
* Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in ↵Alex Auvolat2015-03-116-41/+54
| | | | waiters.
* Add pckbd driver.Alex Auvolat2015-03-114-2/+147
|
* Add simple drawing code & font loading.Alex Auvolat2015-03-111-7/+24
|
* Refactor ; add default font (8x16 standard VGA font).Alex Auvolat2015-03-111-6/+6
|
* Clear screen from GIP client (in login)Alex Auvolat2015-03-111-1/+5
|
* Begin work on GIP (Graphics Initiation Protocol)Alex Auvolat2015-03-112-3/+3
|
* Fix process exiting.Alex Auvolat2015-03-114-36/+45
|
* Add mutex to pciide driver (fixes some stuff)Alex Auvolat2015-03-104-7/+28
|
* Things are happenning ; lots of bugs.Alex Auvolat2015-03-103-11/+28
|
* Implement VESA ioctl (not tested).Alex Auvolat2015-03-101-1/+31
|
* Add mk_shm syscall ; replace get_mode by fctl.Alex Auvolat2015-03-106-12/+30
|
* Pass more information to FS driver on some ops (TODO bugcheck).Alex Auvolat2015-03-108-83/+90
|
* Add simple shared memory facility to IPC (no syscall yet)Alex Auvolat2015-03-108-26/+101
|
* Rename & cleanup.Alex Auvolat2015-03-105-10/+38
|
* Prettify VESA code.Alex Auvolat2015-03-101-37/+56
|
* VESA mode setting ; displays kogata logo!Alex Auvolat2015-03-097-43/+440
|
* Update READMEAlex Auvolat2015-03-091-10/+5
|
* Use single thread for V86 interrupts.Alex Auvolat2015-03-091-10/+27
|
* Implement V86 monitor and VESA mode detection.Alex Auvolat2015-03-0910-3/+388
|
* Finish implementation of VFS pager.Alex Auvolat2015-03-091-24/+66
|
* Remove kernel region pf handlers ; fix forget-to-zero-out bug.Alex Auvolat2015-03-097-38/+35
|
* Partial implement VFS pager (enough for ISO9660!)Alex Auvolat2015-03-0914-131/+261
| | | | Also add some debugging facilities (especially stack trace).
* Nullfs now uses pager.Alex Auvolat2015-03-099-112/+238
|
* Add pager interface ; implement basic functionnality to replace private maps.Alex Auvolat2015-03-097-56/+321
|