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
2462 6224 d 17 h jermar /trunk/kernel/ Replace gcc-specific __FUNCTION__ with C99 __func__.
suncc's xregs=no%float can be used only on sparc64.
 
/trunk/kernel/Makefile
/trunk/kernel/arch/amd64/src/interrupt.c
/trunk/kernel/arch/ia32/src/smp/mps.c
/trunk/kernel/arch/ia32xen/src/smp/mps.c
/trunk/kernel/arch/ia64/src/mm/tlb.c
/trunk/kernel/arch/sparc64/Makefile.inc
/trunk/kernel/arch/sparc64/src/mm/tlb.c
/trunk/kernel/arch/sparc64/src/smp/smp.c
/trunk/kernel/arch/sparc64/src/trap/exception.c
/trunk/kernel/generic/include/panic.h
/trunk/kernel/generic/include/synch/spinlock.h
/trunk/kernel/generic/src/console/kconsole.c
2461 6224 d 17 h mencl /branches/rcu/kernel/ Added Fast avl tree structure which should be used as timeout data structure instead of simple avl tree. This
structure has much faster search min and delete min operations (constant time).
 
/branches/rcu/kernel/test/favltree
/branches/rcu/kernel/test/favltree/favltree1.c
/branches/rcu/kernel/test/favltree/favltree1.def
/branches/rcu/kernel/Makefile
/branches/rcu/kernel/generic/include/adt/avl.h
/branches/rcu/kernel/generic/include/adt/extavl.h
/branches/rcu/kernel/generic/include/cpu.h
/branches/rcu/kernel/generic/include/time/timeout.h
/branches/rcu/kernel/generic/src/adt/avl.c
/branches/rcu/kernel/generic/src/time/clock.c
/branches/rcu/kernel/generic/src/time/timeout.c
/branches/rcu/kernel/kernel.config
/branches/rcu/kernel/test/test.c
/branches/rcu/kernel/test/test.h
/branches/rcu/kernel/test/timeout/timeoutbench1.c
2460 6224 d 17 h jermar /trunk/kernel/ Better infrastructure for building with different compilers.
Separate ICC_CFLAGS added, SUNCC_CFLAGS extended.
 
/trunk/kernel/Makefile
/trunk/kernel/arch/amd64/Makefile.inc
/trunk/kernel/arch/ia32/Makefile.inc
/trunk/kernel/arch/ia32xen/Makefile.inc
/trunk/kernel/arch/ia64/Makefile.inc
/trunk/kernel/arch/sparc64/Makefile.inc
2459 6224 d 21 h jermar /trunk/kernel/arch/ Fix a bug in ia32 and ia32xen Sun Studio builds.
In arch Makefile.inc, SUNCC_CFLAGS can only be appended via the += operator.
 
/trunk/kernel/arch/ia32/Makefile.inc
/trunk/kernel/arch/ia32xen/Makefile.inc
2458 6224 d 21 h jermar /trunk/kernel/arch/mips32/ Fix mips32 build script.
Replace CFLAGS with GCC_CFLAGS.
 
/trunk/kernel/arch/mips32/Makefile.inc
2457 6224 d 21 h jermar /trunk/kernel/arch/ia32xen/src/smp/ Fix ia32xen so that it can be built.  
/trunk/kernel/arch/ia32xen/src/smp/apic.c
2456 6225 d 16 h hudecek /branches/rcu/kernel/ Model use of RCU  
/branches/rcu/kernel/generic/include/adt/listrcu.h
/branches/rcu/kernel/generic/src/adt/listrcu.c
/branches/rcu/kernel/Makefile
/branches/rcu/kernel/arch/ia64/src/ski/ski.c
/branches/rcu/kernel/arch/mips32/src/drivers/msim.c
/branches/rcu/kernel/arch/mips32/src/drivers/serial.c
/branches/rcu/kernel/arch/ppc32/src/drivers/cuda.c
/branches/rcu/kernel/genarch/src/kbd/i8042.c
/branches/rcu/kernel/genarch/src/kbd/ns16550.c
/branches/rcu/kernel/genarch/src/kbd/z8530.c
/branches/rcu/kernel/generic/include/ddi/irq.h
/branches/rcu/kernel/generic/include/ipc/irq.h
/branches/rcu/kernel/generic/src/ddi/irq.c
/branches/rcu/kernel/generic/src/ipc/irq.c
/branches/rcu/kernel/test/synch/rcu1.c
/branches/rcu/kernel/test/tasklet/tasklet1.c
2455 6225 d 16 h jermar /trunk/kernel/ Some non-C files (e.g. .S and linker scripts) must be still "compiled" with gcc and GCC_CFLAGS.  
/trunk/kernel/Makefile
2454 6225 d 16 h jermar /trunk/kernel/ A bit of infrastructure for building with different compilers.
CFLAGS split into GCC_CFLAGS and SUNCC_CFLAGS.
As of now, there are no separate ICC_CFLAGS, but can be easily added.
 
/trunk/kernel/Makefile
/trunk/kernel/arch/amd64/Makefile.inc
/trunk/kernel/arch/arm32/Makefile.inc
/trunk/kernel/arch/ia32/Makefile.inc
/trunk/kernel/arch/ia32xen/Makefile.inc
/trunk/kernel/arch/ia64/Makefile.inc
/trunk/kernel/arch/mips32/Makefile.inc
/trunk/kernel/arch/ppc32/Makefile.inc
/trunk/kernel/arch/ppc64/Makefile.inc
/trunk/kernel/arch/sparc64/Makefile.inc
2453 6225 d 22 h jermar /trunk/kernel/ More suncc fixes.
- remove more empty declarations
- add options to turn errors on empty structs into warnings and options to
silence these warnings
 
/trunk/kernel/Makefile
/trunk/kernel/arch/amd64/include/asm.h
2452 6226 d 0 h jermar /trunk/kernel/ More suncc fixes.
- Removed extra semicolons after function declaration.
- Sun Studio recognizes only C99 __func__ and no gcc-specific __FUNCTION__.
In this case, a simple -D option can fix the problem.
 
/trunk/kernel/Makefile
/trunk/kernel/arch/amd64/include/asm.h
2451 6226 d 18 h jermar /trunk/kernel/generic/ JoinMe -> Lingering  
/trunk/kernel/generic/include/proc/thread.h
/trunk/kernel/generic/src/proc/scheduler.c
/trunk/kernel/generic/src/proc/thread.c
2450 6227 d 19 h mencl /branches/rcu/kernel/ Repaired avl and extavl tree timeout unregister and delete_min. These
faults caused problems with initializing cpus and they appeared only in
multi processor systems.
 
/branches/rcu/kernel/generic/src/adt/avl.c
/branches/rcu/kernel/generic/src/adt/extavl.c
/branches/rcu/kernel/generic/src/time/clock.c
/branches/rcu/kernel/generic/src/time/timeout.c
/branches/rcu/kernel/test/timeout/timeoutbench1.c
2449 6229 d 5 h decky /trunk/uspace/rd/ remove unnecessary includes  
/trunk/uspace/rd/rd.c
2448 6229 d 20 h jermar /branches/arm/kernel/arch/arm32/src/cpu/ Start the CPU identification string with cpu[0-9].  
/branches/arm/kernel/arch/arm32/src/cpu/cpu.c
2447 6229 d 22 h jermar /trunk/kernel/generic/src/main/ Split accidently joined lines.  
/trunk/kernel/generic/src/main/uinit.c
2446 6229 d 22 h jermar /trunk/kernel/generic/ More efficient and simpler task termination.

Based on the assumption, that after its creation, only the task itself can create more threads for itself,
the last thread with userspace context to execute thread_exit() will perform futex and IPC cleanup. When
the task has no threads, it is destroyed. Both the cleanup and destruction is controlled by reference
counting.

As for userspace threads, even though there could be a global garbage collector for joining threads, it is
much simpler if the uinit thread detaches itself before switching to userspace.

task_kill() is now an idempotent operation. It just instructs the threads within a task to exit.

Change in the name of a thread state: Undead -> JoinMe.
 
/trunk/kernel/generic/include/adt/list.h
/trunk/kernel/generic/include/proc/task.h
/trunk/kernel/generic/include/proc/thread.h
/trunk/kernel/generic/src/main/uinit.c
/trunk/kernel/generic/src/proc/scheduler.c
/trunk/kernel/generic/src/proc/task.c
/trunk/kernel/generic/src/proc/thread.c
2445 6229 d 23 h decky /trunk/ initial merge of branches/fs
(not finished, huge cleanup is needed)
 
/trunk/uspace/libc/generic/io/file.c
/trunk/uspace/libc/include/io/file.h
/trunk/uspace/rd/rd.h
/trunk/kernel/doc/AUTHORS
/trunk/kernel/generic/include/errno.h
/trunk/kernel/generic/include/lib/rd.h
/trunk/kernel/generic/src/lib/rd.c
/trunk/kernel/generic/src/main/kinit.c
/trunk/uspace/libc/include/ipc/services.h
/trunk/uspace/rd/rd.c
2444 6230 d 14 h jermar /trunk/kernel/ First fixes for suncc support.
It is going to be a long way...
 
/trunk/kernel/Makefile
/trunk/kernel/arch/ia32/include/asm.h
/trunk/kernel/generic/include/mm/slab.h
2443 6230 d 15 h jermar /trunk/ sscc -> suncc  
/trunk/HelenOS.config
/trunk/boot/boot.config
/trunk/kernel/Makefile
/trunk/kernel/kernel.config
/trunk/uspace/uspace.config

Show All