mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
Beginnings of v86 mode support. Corrected locking bug when terminating multithreaded process. svn path=/trunk/; revision=1475
92 lines
2.4 KiB
Plaintext
92 lines
2.4 KiB
Plaintext
2000-12-23 David Welch <[email protected]>
|
|
|
|
* All task switching is done in software.
|
|
* Beginnings of v86 mode support.
|
|
|
|
2000-12-22 David Welch <[email protected]>
|
|
|
|
* ntoskrnl/ps/kill.c (PiTerminateProcessThreads): Drop
|
|
PiThreadListLock before calling PsTerminateOtherThread
|
|
|
|
2000-12-16 David Welch <[email protected]>
|
|
|
|
* ntoskrnl/ex/fmutex.c (ExReleaseFastMutexUnsafe): Only set the
|
|
fast mutex's owner back to NULL if it is being released
|
|
|
|
2000-12-10 David Welch <[email protected]>
|
|
|
|
* ntoskrnl/ke/i386/vm86_sup.S (Ki386RetToV86Mode): Added function
|
|
to do the raw switch to v86 mode.
|
|
* ntoskrnl/include/internal/vm86.h: Definitions for the v86 mode
|
|
support.
|
|
|
|
2000-12-10 David Welch <[email protected]>
|
|
|
|
* ntoskrnl/ke/i386/trap.s (PsBeginThreadWithContextInternal): Moved
|
|
to ntoskrnl/ke/i386/bswitch.S.
|
|
* ntoskrnl/ke/i386/trap.s (interrupt_handler2e): Moved to
|
|
ntoskrnl/ke/i386/syscall.S.
|
|
* ntoskrnl/ke/i386/trap.s (old_interrupt_handler2e): Removed.
|
|
|
|
2000-12-04 David Welch <[email protected]>
|
|
|
|
* ntoskrnl/ke/i386/irq.c (KiInterruptDispatch): Record the last PC
|
|
value for a rescheduled thread.
|
|
* ntoskrnl/ke/i386/irqhand.s: Construct a primitive trap frame
|
|
in interrupt handlers.
|
|
|
|
2000-08-30 David Welch <[email protected]>
|
|
|
|
* Added calibration of KeStallExecutionProcessor timing
|
|
(code from linux 2.2.16).
|
|
|
|
* Corrected compilation bugs in user32 library.
|
|
|
|
* Corrected compilation bugs related to anonymous structs
|
|
in ndis code.
|
|
|
|
* Pass command line to kernel from loadros.
|
|
|
|
* Corrected PIC mask calculation.
|
|
|
|
2000-05-27 David Welch <[email protected]>
|
|
|
|
* Fixed issue with closing non-existent or already closed
|
|
handle.
|
|
|
|
2000-01-26 David Welch <[email protected]>
|
|
|
|
* ZwCreateProcess now maps ntdll rather than the user-mode
|
|
code.
|
|
|
|
1999-09-06 David Welch <[email protected]>
|
|
|
|
* Implemented ZwOpenProcess.
|
|
|
|
* Partially implemented killing other threads (possible memory
|
|
leaks).
|
|
|
|
* Made a start on a proper implemention of APCs (based on
|
|
article in NT insider).
|
|
|
|
1998-12-08 David Welch <[email protected]>
|
|
|
|
* Corrected bug in shell (Read two keypresses and assumed they
|
|
where the key going up and down respectively).
|
|
|
|
* Corrected race in dpc handling.
|
|
|
|
* Took out cleanup sections in ZwReadFile (now handled by the
|
|
APC).
|
|
|
|
* Disabled broken code in kernel32.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|