haiku/src/system/kernel
Ingo Weinhold 7afc16f059 * Fixed a bug regarding storing/restoring FPSCR in the interrupt
code. The stack pointer was not adjusted, hence we were
  overwriting the previous register value. But it looks like I
  missed to check in the arch_cpu.h with the iframe structure
  including the floating point registers anyway.
* Backported the ELF PPC relocation code from the boot loader to
  the kernel.
* Fixed the PPC version of arch_thread_switch_kstack_and_call().
  Apparently the signature had changed, but the assembly
  implementation was not adjusted accordingly.
* sc prints more registers now (LR, CR, CTR, XER,...).
* Fixed several occurences of not-working fault handlers.
  Apparently the compiler realized, that the "error" label was
  never jumped to (by the code it knew), and optimized the
  respective code away. Now we use a trick to make it think the
  error label might actually be jumped to. I wonder whether the
  x86 version has the same problem when being compiled with GCC4.
* Adopted the x86 page fault handling interrupt code.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15933 a95241bf-73f2-0310-859d-f6bbb57e9c96
2006-01-13 00:49:13 +00:00
..
arch * Fixed a bug regarding storing/restoring FPSCR in the interrupt 2006-01-13 00:49:13 +00:00
cache Deleted ranges were never removed from the ranges hash... this could have finally 2006-01-02 13:09:42 +00:00
debug Fixed some GCC4 only warnings 2006-01-08 12:39:06 +00:00
device_manager * Introduced new build system variables 2005-12-30 21:20:07 +00:00
disk_device_manager * Introduced new build system variables 2005-12-30 21:20:07 +00:00
fs * Introduced new build system variables 2005-12-30 21:20:07 +00:00
lib Fixed some GCC4 only warnings 2006-01-08 12:39:06 +00:00
messaging * Introduced new build system variables 2005-12-30 21:20:07 +00:00
platform Reorganized the boot platform dependencies in the kernel a bit. 2006-01-03 16:26:39 +00:00
util * Introduced new build system variables 2005-12-30 21:20:07 +00:00
vm * Fixed tracing build. 2006-01-10 02:22:24 +00:00
boot_item.cpp The boot item list was not initialized; this was no problem, though, as 2005-06-13 13:01:13 +00:00
cpu.c The short story: we now have MTRR support on Intel and AMD CPUs (the latter 2005-12-13 16:34:29 +00:00
elf.c Fixed some GCC4 only warnings 2006-01-08 12:39:06 +00:00
heap.c * Added debug output to vm_low_memory.cpp. 2005-12-16 17:35:03 +00:00
image.c Added a image_debug_lookup_user_symbol_address() that one day may find symbol names 2005-11-04 17:25:58 +00:00
int.c Some work in progress of the MTRR support. Shouldn't do any harm yet :-) 2005-12-13 00:06:52 +00:00
Jamfile * Introduced new build system variables 2005-12-30 21:20:07 +00:00
kernel_daemon.c Some cleanup (made static variables static). 2005-06-13 12:59:11 +00:00
linkhack.c Renamed system/core to system/kernel. 2005-04-13 13:22:10 +00:00
lock.c Renamed system/core to system/kernel. 2005-04-13 13:22:10 +00:00
main.c Reorganized the boot platform dependencies in the kernel a bit. 2006-01-03 16:26:39 +00:00
module.c Fixed some GCC4 only warnings 2006-01-08 12:39:06 +00:00
port.c * Added debug output to vm_low_memory.cpp. 2005-12-16 17:35:03 +00:00
real_time_clock.c Fixed a couple problems in the time keeping mechanism, which got broken lately. Done in tandem with Korli 2006-01-05 16:03:22 +00:00
scheduler.c Changed the boot procedure a bit. 2005-10-25 16:59:12 +00:00
sem.c Make sure system can continue after panic. 2005-12-12 17:00:46 +00:00
shutdown.c Renamed system/core to system/kernel. 2005-04-13 13:22:10 +00:00
signal.c Fixed a major oversight in the interrupt handling: when a user space 2005-11-25 12:26:56 +00:00
smp.c * We now support the global page feature of x86 processors that prevents 2005-12-14 17:07:37 +00:00
syscalls.c The app_server now updates the kernel's blue screen frame buffer on mode changes 2005-05-29 20:23:00 +00:00
sysctl.c Renamed system/core to system/kernel. 2005-04-13 13:22:10 +00:00
system_info.c Now fills in system_info::cpu_infos[] (ie. CPU activity) by looking at the active 2005-07-01 00:31:38 +00:00
team.c Separated vm_address_space.h from vm.h. 2005-12-20 15:54:45 +00:00
thread.c Separated vm_address_space.h from vm.h. 2005-12-20 15:54:45 +00:00
timer.c Fixes that make Haiku build with gcc 4. Mainly out of the following 2005-11-12 23:27:14 +00:00