Subversion Repositories HelenOS

Rev

Go to most recent revision | Hide changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff Changes
1591 6595 d 0 h palkovsky /kernel/trunk/generic/ Small updates to ipc.  
/kernel/trunk/generic/include/ipc/ipc.h
/kernel/trunk/generic/src/ipc/ipc.c
/kernel/trunk/generic/src/ipc/irq.c
/kernel/trunk/generic/src/ipc/sysipc.c
1590 6595 d 2 h cejka /uspace/trunk/tetris/ Tetris has now a new menu.
Hiscore table added.
 
/uspace/trunk/tetris/scores.c
/uspace/trunk/tetris/scores.h
/uspace/trunk/tetris/screen.c
/uspace/trunk/tetris/screen.h
/uspace/trunk/tetris/tetris.c
1589 6595 d 4 h jermar /kernel/trunk/generic/src/ Improve comments regarding liveliness of threads and tasks.  
/kernel/trunk/generic/src/ddi/ddi.c
/kernel/trunk/generic/src/proc/task.c
/kernel/trunk/generic/src/proc/thread.c
1588 6595 d 4 h jermar /kernel/trunk/generic/src/ In task_kill(), remove the task from the tasks_btree before proceeding.
Thus, when the kernel finds the task in the tasks_btree and locks it before
releasing tasks_lock, it is guaranteed that the task will not be destroyed
until the lock is held. If the kernel needs to unlock the task, do some operation
and lock it again, it should increase its refcount before doing so. In that case,
when releasing the lock, it must decrement the refcount and if it reaches
zero, it must call task_destroy().
 
/kernel/trunk/generic/src/ddi/ddi.c
/kernel/trunk/generic/src/proc/task.c
/kernel/trunk/generic/src/security/cap.c
1587 6595 d 5 h jermar /kernel/trunk/ task_destroy() implementation, fixes in as_destroy() and task_kill().
This is the first version of HelenOS that would perform complete cleanup leading from thread to destruction of address space.
 
/kernel/trunk/arch/amd64/src/proc/task.c
/kernel/trunk/arch/ia32/src/proc/task.c
/kernel/trunk/arch/ia64/include/proc/task.h
/kernel/trunk/arch/mips32/include/proc/task.h
/kernel/trunk/arch/ppc32/include/proc/task.h
/kernel/trunk/arch/ppc64/include/proc/task.h
/kernel/trunk/arch/sparc64/include/proc/task.h
/kernel/trunk/generic/include/proc/task.h
/kernel/trunk/generic/src/mm/as.c
/kernel/trunk/generic/src/proc/task.c
1586 6595 d 8 h jermar /kernel/trunk/generic/src/synch/ futex_cleanup() implementation.  
/kernel/trunk/generic/src/synch/futex.c
1585 6595 d 8 h jermar /kernel/trunk/generic/ Kill task when its main thread exits.  
/kernel/trunk/generic/include/proc/task.h
/kernel/trunk/generic/src/proc/task.c
/kernel/trunk/generic/src/proc/thread.c
1584 6595 d 9 h cejka /uspace/trunk/tetris/ Tetris end improved.  
/uspace/trunk/tetris/tetris.c
1583 6595 d 12 h jermar /kernel/trunk/generic/ Make ktaskclnp call ipc_cleanup and futex_cleanup.  
/kernel/trunk/generic/include/proc/task.h
/kernel/trunk/generic/include/synch/futex.h
/kernel/trunk/generic/src/proc/task.c
/kernel/trunk/generic/src/synch/futex.c
1582 6595 d 12 h palkovsky /kernel/trunk/generic/ Modified ipc_cleanup.  
/kernel/trunk/generic/include/ipc/ipc.h
/kernel/trunk/generic/src/console/cmd.c
/kernel/trunk/generic/src/ipc/ipc.c
1581 6595 d 14 h jermar /kernel/trunk/generic/src/ Detach kmp thread after joining it.
Extend assertion in thread_destroy() to not panic when threads are destroyed in their Unded state.
 
/kernel/trunk/generic/src/main/kinit.c
/kernel/trunk/generic/src/proc/thread.c
1580 6595 d 15 h jermar /kernel/trunk/generic/src/ Update for task_kill().  
/kernel/trunk/generic/src/proc/task.c
/kernel/trunk/generic/src/synch/waitq.c
1579 6596 d 1 h jermar /kernel/trunk/generic/ Framework for task_kill().
Some pieces (e.g. implementation of ktask_cleanup() kernel thread and
task_destroy() function) are missing.
Changed locking order for task lock, threads_lock and thread lock from
threads_lock, thread lock, task lock to task lock, threads_lock, thread lock.
 
/kernel/trunk/generic/include/proc/task.h
/kernel/trunk/generic/include/proc/thread.h
/kernel/trunk/generic/src/proc/task.c
/kernel/trunk/generic/src/proc/thread.c
/kernel/trunk/generic/src/synch/waitq.c
/kernel/trunk/generic/src/syscall/syscall.c
1578 6596 d 1 h cejka /uspace/trunk/console/ Fixed and improved dummy console switch.  
/uspace/trunk/console/console.c
1577 6596 d 2 h cejka /uspace/trunk/fb/ Added missing break.  
/uspace/trunk/fb/ega.c
1576 6596 d 3 h jermar /kernel/trunk/ Make use of thread_join_timeout() and thread_detach() in kernel.

Improved comments in slab.h.
 
/kernel/trunk/arch/ia32/include/smp/mps.h
/kernel/trunk/arch/ia32/src/smp/mps.c
/kernel/trunk/arch/ia32/src/smp/smp.c
/kernel/trunk/generic/include/mm/slab.h
/kernel/trunk/generic/include/proc/thread.h
/kernel/trunk/generic/src/main/kinit.c
/kernel/trunk/generic/src/proc/scheduler.c
1575 6596 d 4 h cejka /uspace/trunk/ Support for console show/hide cursor.
Tetris without cursor.
 
/uspace/trunk/console/console.c
/uspace/trunk/console/console.h
/uspace/trunk/console/screenbuffer.c
/uspace/trunk/console/screenbuffer.h
/uspace/trunk/tetris/screen.c
1574 6596 d 5 h palkovsky /uspace/trunk/console/ Don't let processes connect to kernel console.  
/uspace/trunk/console/console.c
1573 6596 d 5 h palkovsky /kernel/trunk/generic/ Renamed some things in IPC to be consistent.
Added ipc reporting to kconsole.
 
/kernel/trunk/generic/include/ipc/ipc.h
/kernel/trunk/generic/src/console/cmd.c
/kernel/trunk/generic/src/ipc/ipc.c
/kernel/trunk/generic/src/ipc/ipcrsc.c
/kernel/trunk/generic/src/ipc/irq.c
/kernel/trunk/generic/src/ipc/sysipc.c
/kernel/trunk/generic/src/proc/task.c
1572 6596 d 5 h palkovsky /uspace/trunk/console/ Move slyly kernel console to F12.  
/uspace/trunk/console/console.h
1571 6596 d 5 h jermar /kernel/trunk/generic/ thread_join_timeout() and thread_detach() implementation.
Needs more thorough testing.
 
/kernel/trunk/generic/include/proc/thread.h
/kernel/trunk/generic/src/proc/scheduler.c
/kernel/trunk/generic/src/proc/thread.c
1570 6596 d 6 h vana /kernel/trunk/arch/ia64/src/ski/ Ia64 keyboard extension  
/kernel/trunk/arch/ia64/src/ski/ski.c
1569 6596 d 6 h vana /uspace/trunk/kbd/arch/ia64/src/ Ia64 function keys support  
/uspace/trunk/kbd/arch/ia64/src/kbd.c
1568 6596 d 7 h palkovsky /kernel/trunk/generic/ Slightly remodelled ipc hangups to facilitate correct cleanup.
Doc updates for frame allocator.
 
/kernel/trunk/generic/include/ipc/ipc.h
/kernel/trunk/generic/include/proc/task.h
/kernel/trunk/generic/src/ipc/ipc.c
/kernel/trunk/generic/src/ipc/ipcrsc.c
/kernel/trunk/generic/src/ipc/sysipc.c
/kernel/trunk/generic/src/mm/frame.c
1567 6596 d 7 h palkovsky /uspace/trunk/ Fixed errors made by last commit.  
/uspace/trunk/console/console.c
/uspace/trunk/fb/fb.c
1566 6596 d 7 h cejka /uspace/trunk/kbd/arch/ia32/src/ Fixed problem with big chars on ia32.  
/uspace/trunk/kbd/arch/ia32/src/kbd.c
1565 6596 d 7 h vana /uspace/trunk/fb/ Next some coding style changes  
/uspace/trunk/fb/ega.c
1564 6596 d 8 h vana /uspace/trunk/fb/ Coding style repair  
/uspace/trunk/fb/ega.c
1563 6596 d 8 h palkovsky /uspace/trunk/console/ Small untested fixes in console.  
/uspace/trunk/console/console.c
1562 6596 d 8 h vana /uspace/trunk/fb/ Ega scrolling and screen saving  
/uspace/trunk/fb/ega.c
/uspace/trunk/fb/fb.c
1561 6596 d 10 h palkovsky /uspace/trunk/fb/ Fixed incorrect compiling of fb for different archs.  
/uspace/trunk/fb/Makefile
/uspace/trunk/fb/main.c
1560 6596 d 10 h vana /uspace/trunk/ fb make changes neaded by ega driver and console switching by function keys  
/uspace/trunk/console/console.c
/uspace/trunk/fb/Makefile
/uspace/trunk/fb/main.c
/uspace/trunk/kbd/arch/ia32/src/kbd.c
/uspace/trunk/kbd/generic/kbd.c
/uspace/trunk/kbd/generic/key_buffer.c
/uspace/trunk/kbd/include/key_buffer.h
1559 6596 d 10 h palkovsky /uspace/trunk/fb/ Fixed error in FB on scrolling.  
/uspace/trunk/fb/fb.c
1558 6596 d 11 h palkovsky /uspace/trunk/ Console graphics update.
Slight speed improvement on console redraw.
 
/uspace/trunk/console/cons_has_data.ppm
/uspace/trunk/console/cons_idle.ppm
/uspace/trunk/console/cons_kernel.ppm
/uspace/trunk/console/cons_selected.ppm
/uspace/trunk/console/gcons.c
/uspace/trunk/fb/fb.c
/uspace/trunk/libc/include/ipc/fb.h
1557 6596 d 23 h palkovsky /uspace/trunk/console/ Fixed bad state changing.  
/uspace/trunk/console/gcons.c
1556 6597 d 0 h palkovsky /uspace/trunk/console/ Changed kernel icon.  
/uspace/trunk/console/cons_kernel.ppm
1555 6597 d 0 h palkovsky /uspace/trunk/ Completed graphical console.  
/uspace/trunk/console/cons_has_data.ppm
/uspace/trunk/console/cons_idle.ppm
/uspace/trunk/console/cons_kernel.ppm
/uspace/trunk/console/cons_selected.ppm
/uspace/trunk/console/Makefile
/uspace/trunk/console/console.c
/uspace/trunk/console/console.h
/uspace/trunk/console/gcons.c
/uspace/trunk/console/gcons.h
/uspace/trunk/fb/fb.c
/uspace/trunk/fb/ppm.c
/uspace/trunk/fb/ppm.h
1554 6597 d 1 h jermar /kernel/trunk/generic/src/mm/ Improve comment in slab.c.  
/kernel/trunk/generic/src/mm/slab.c
1553 6597 d 5 h palkovsky /uspace/trunk/console/ Fix forgotten define change.  
/uspace/trunk/console/screenbuffer.c
1552 6597 d 5 h palkovsky /uspace/trunk/ Added nice kernel console switching, currently works on fb devices.  
/uspace/trunk/console/console.c
/uspace/trunk/console/gcons.c
/uspace/trunk/console/gcons.h
/uspace/trunk/console/screenbuffer.h
/uspace/trunk/fb/fb.c
/uspace/trunk/libc/include/async.h
/uspace/trunk/libc/include/ipc/fb.h