summaryrefslogtreecommitdiff
path: root/src/kernel
AgeCommit message (Expand)Author
2017-07-20added a virtual keyboard driver interface, made the PS/2 keyboard a specializ...Andreas Baumann
2017-07-20kernel_panic while shutting down does not result in endless loops anymoreAndreas Baumann
2017-07-18added a virtual mouse driver interface, made the PS/2 mouse a specialization ...Andreas Baumann
2017-07-16move longjmp for kernel_panicAndreas Baumann
2017-07-16introduced classes of driver types (graphics, mouse, keyboard, network, etc.)Andreas Baumann
2017-07-16moved registering of mouse/keyboard interrupts into the driver activation ins...Andreas Baumann
2017-07-15started to make driver construtors similar (keyboard, mouse)Andreas Baumann
2017-07-15reworked driver init and vtable, taking the interrupt manager and the contextAndreas Baumann
2017-07-15same for the graphical VGA driverAndreas Baumann
2017-07-15mouse and keyboard are now allocated driver pointersAndreas Baumann
2017-07-15moved keyboard driver into the global kernel context (away from the stack)Andreas Baumann
2017-07-14added stats functions to memory manager, don't use internal membersAndreas Baumann
2017-07-14some linkage tweaking, the kernel is not linked against libssp (whichAndreas Baumann
2017-07-14removed stddef.h and limits.h (come with the compiler header files)Andreas Baumann
2017-07-13forgot to add test_malloc.cAndreas Baumann
2017-07-13added a simple test for malloc/freeAndreas Baumann
2017-07-13separated C library implementations with an OS_ABAOS define (for now),Andreas Baumann
2017-07-12removed test tasksAndreas Baumann
2017-07-10VGA Z-buffer is now dynamically allocated and freedAndreas Baumann
2017-07-09fixed the vga_refresh bug. the problem is under optimization theAndreas Baumann
2017-07-08added dedicated kernel entry to avoid address reordering under compiler optim...Andreas Baumann
2017-07-05removed unneded volatile for text VIDEO_MEMORY (we should add the reference t...Andreas Baumann
2017-07-05removed superfluous context in vga driver (was not used)Andreas Baumann
2017-07-05tried to fix libc tests, currently they draw in too many dependenciesAndreas Baumann
2017-07-05'mem' command shows memory usage of kernel heap nowAndreas Baumann
2017-07-05fixed compilation errors due to unused variablesAndreas Baumann
2017-07-05some kernel code cleanupAndreas Baumann
2017-07-05fixed graphical screen refresh (a refreshScreen task)Andreas Baumann
2017-07-04got scheduling of task A and B working (now graphics output and termination i...Andreas Baumann
2017-07-02started to add task schedulingAndreas Baumann
2017-07-02added ESC key in PS/2 keyboard driverAndreas Baumann
2017-07-01do not call methods directly on desktop object, the desktop object couldAndreas Baumann
2017-07-01replaced some strange access to .base.base with casts of the class to the cla...Andreas Baumann
2017-07-01got rid of superflous vtables in GUI class hierarchyAndreas Baumann
2017-07-01fixed get_focus error in widget (called the wrong parent)Andreas Baumann
2017-07-01restoring VGA text cursor in the right placeAndreas Baumann
2017-07-01readded -Werror and fixed some cast errors around memcpyAndreas Baumann
2017-06-30almost got a complete mode switch (vga graphics back to text) workingAndreas Baumann
2017-06-30text widget has a constant buffer and owns the string to draw nowAndreas Baumann
2017-06-30playing with Z buffering in VGA driverAndreas Baumann
2017-06-30added a third widget (for drawing fonts)Andreas Baumann
2017-06-30added a VGA wait for retrace in graphics modeAndreas Baumann
2017-06-30added a window to gui which is draggable by the mouseAndreas Baumann
2017-06-29widget should be in kernel data section and not in local scopes of a stackAndreas Baumann
2017-06-26nothing working in gui!Andreas Baumann
2017-06-25fighting races and corrupted data on clang, funny behaviour on tcc, fine on g...Andreas Baumann
2017-06-25small unused variable fixAndreas Baumann
2017-06-25we have a flickering mouse cursor and terrible redrawing of the desktop now :-)Andreas Baumann
2017-06-25put the mouse object into the global context so we can adjust theAndreas Baumann
2017-06-25fixed calculation of coordinates in text widgetAndreas Baumann