You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(138) |
Aug
(28) |
Sep
(2) |
Oct
(4) |
Nov
(5) |
Dec
|
---|
From: David W. <dw...@mo...> - 2002-08-08 17:47:58
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/ntoskrnl/ps/ Changes by: dw...@mo....(none) 02/08/08 10:54:16 Modified files: ./: ChangeLog reactos/drivers/dd/beep/: .cvsignore reactos/drivers/fs/vfat/: cleanup.c fcb.c reactos/include/ntdll/: ldr.h reactos/lib/kernel32/process/: create.c reactos/lib/ntdll/ldr/: startup.c utils.c reactos/lib/ntdll/rtl/: process.c reactos/ntoskrnl/: .cvsignore reactos/ntoskrnl/cc/: copy.c view.c reactos/ntoskrnl/dbg/: kdb.c reactos/ntoskrnl/include/internal/: cc.h kd.h ps.h reactos/ntoskrnl/kd/: gdbstub.c kdebug.c reactos/ntoskrnl/ke/: apc.c bug.c catch.c kthread.c reactos/ntoskrnl/ke/i386/: bthread.S syscall.S thread.c usertrap.c reactos/ntoskrnl/ldr/: init.c reactos/ntoskrnl/mm/: section.c reactos/ntoskrnl/ps/: create.c thread.c Log message: 2002-08-08 David Welch <we...@co...> * ntoskrnl/mm/section (NtQuerySection): Return the right result length. 2002-08-08 David Welch <we...@co...> * ntoskrnl/ke/usertrap.c (print_user_address): Check for a NULL LDR structure in the PEB; copy the LDR pointer in safely. 2002-08-08 David Welch <we...@co...> * ntoskrnl/ke/apc.c (KiDeliverUserApc): Deliver all present APCs; release the APC spinlock while acccessing user memory. 2002-08-08 David Welch <we...@co...> * include/internal/ps.h: Adjusted offsets into the ETHREAD structure. * include/internal/ps.h: Removed redundant members from the KTHREAD structure. * ntoskrnl/ke/kthread.c (KeInitializeThread): Removed redundant members from the KTHREAD structure. 2002-08-08 David Welch <we...@co...> * ntoskrnl/dbg/kdb.c (KdbEnterDebuggerException): New function to enter the debugger on an exception. * ntoskrnl/kd/kdebug.c (KdInitSystem): Initialize the local kernel debugger if enabled. * ntoskrnl/ke/catch.c (KiDispatchException): Enter the local kernel debugger on an exception. 2002-08-08 David Welch <we...@co...> * include/ntdll/ldr.h: Added definition for a DLL entrypoint. * lib/kernel32/process/create.c (KlCreateFirstThread): Put the argument to the NtProcessStartup function on the stack. * lib/kernel32/process/create.c (KlInitPeb): Read the base address of the new image from the PEB. * lib/kernel32/process/create.c (CreateProcessW): Start the first thread at the entrypoint of the new image. * lib/ntdll/ldr/startup.c (LdrInitializeThunk): If the function is called after the initial startup then just call the entrypoints for the loaded DLLs with DLL_THREAD_ATTACH. Don't call the entrypoint of the image. * lib/ntdll/rtl/process.c (RtlpCreateFirstThread): Put the argument to the NtProcessStartup function on the stack. * lib/ntdll/rtl/process.c (KlInitPeb): Read the base address of the new image from the PEB. * lib/ntdll/rtl/process.c (RtlCreateUserProcess): Start the first thread at the entrypoint of the new image. * ntoskrnl/ke/i386/bthread.S (PsBeginThreadWithContextInternal): Use the system call path to begin a usermode thread. * ntoskrnl/ke/i386/thread.c (Ke386InitThreadWithContext): Convert the supplied context into a trap frame. * ntoskrnl/ldr/init.c (LdrLoadInitialProcess): Put the PEB argument to the NtProcessStartup function on the new stack; start the first thread at the entrypoint of the image. * ntoskrnl/ps/create.c (NtCreateThread): Create an APC to call LdrInitializeThunk in the context of a new thread before its entrypoint. 2002-08-08 David Welch <we...@co...> * drivers/fs/vfat/cleanup.c (VfatCleanupFile): Uninitialise the cache on file cleanup. * drivers/fs/vfat/fcb.c (vfatReleaseFcb): Don't uninitialise the cache on file close. * ntoskrnl/cc/copy.c: Renamed zero page global variable. * ntoskrnl/cc/view.c: Added cache delete function. |
From: Brian P. <bp...@mo...> - 2002-08-08 04:40:35
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/fs/ Changes by: bp...@mo....(none) 02/08/07 21:46:48 Modified files: freeldr/freeldr/fs/: ext2.c ext2.h Log message: Defined FAST_SYMLINK_MAX_NAME_SIZE |
From: Brian P. <bp...@mo...> - 2002-08-08 04:32:26
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/include/ Changes by: bp...@mo....(none) 02/08/07 21:38:43 Modified files: freeldr/freeldr/: CHANGELOG freeldr/freeldr/fs/: ext2.c freeldr/freeldr/include/: version.h Log message: Changes in v1.7.2 (8/7/2002) (brianp) - Fragment size must be equal to the block size |
From: Brian P. <bp...@mo...> - 2002-08-08 04:21:54
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/include/ Changes by: bp...@mo....(none) 02/08/07 21:28:09 Modified files: freeldr/freeldr/: CHANGELOG freeldr/freeldr/fs/: ext2.c ext2.h freeldr/freeldr/include/: version.h Log message: Changes in v1.7.1 (8/7/2002) (brianp) - Symbolic links on EXT2/3 are now supported |
From: Brian P. <bp...@mo...> - 2002-08-07 05:30:54
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/reactos/ Changes by: bp...@mo....(none) 02/08/06 22:37:07 Modified files: freeldr/freeldr/mm/: meminit.c freeldr/freeldr/reactos/: reactos.c Log message: Fix for compiling in non-debug (release) mode. (Reduces binary size from 128k to 82k currently) |
From: Brian P. <bp...@mo...> - 2002-08-07 05:07:04
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/video/ Changes by: bp...@mo....(none) 02/08/06 22:13:18 Modified files: freeldr/freeldr/: CHANGELOG Makefile bootmgr.c debug.c drivemap.c freeldr.c linuxboot.c miscboot.c multiboot.c options.c oslist.c freeldr/freeldr/cache/: blocklist.c cache.c cm.h freeldr/freeldr/comm/: portio.c rs232.c freeldr/freeldr/disk/: disk.c geometry.c partition.c freeldr/freeldr/fs/: fat.c fat.h fs.c iso.c iso.h freeldr/freeldr/include/: bootmgr.h cache.h comm.h debug.h disk.h drivemap.h freeldr.h fs.h inifile.h linux.h mm.h multiboot.h oslist.h reactos.h rtl.h ui.h version.h video.h freeldr/freeldr/inifile/: ini.h ini_init.c inifile.c parse.c freeldr/freeldr/mm/: mem.h meminit.c mm.c freeldr/freeldr/reactos/: arcname.c reactos.c reghive.c registry.c registry.h freeldr/freeldr/rtl/: list.c memory.c print.c string.c freeldr/freeldr/ui/: gui.c gui.h tui.c tui.h tuimenu.c ui.c freeldr/freeldr/video/: vidmode.c Added files: freeldr/freeldr/fs/: ext2.c ext2.h freeldr/freeldr/math/: i386.h libgcc2.c libgcc2.h longlong.h Log message: Changes in v1.7 (8/6/2002) (brianp) - EXT2/EXT3 file system support. - Does not yet support symbolic links or booting from an EXT2/3 partition. - Fixed bug in UI code. - Added '%%' format specifier to printf()-like functions. - Added functions __udivdi3 & __umoddi3 so that 64-bit division is now supported. - Changed types BYTE, WORD, DWORD, LONG, ULONG to U8, U16, U32, S32, U32 so that you know the size of the variable across different architectures with different sized words & dwords, etc. - Types CHAR, UCHAR, PCHAR, PUCHAR, WCHAR, PWCHAR have not been changed yet (I haven't decided exactly how I'm going to handle unicode) (isn't this an awesome commit? ;-) Just look at that list of files) |
From: Jason F. <jf...@mo...> - 2002-08-05 19:51:50
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/include/reactos/ Changes by: jf...@mo....(none) 02/08/05 12:57:47 Modified files: reactos/include/reactos/: version.h Log message: Updated version file to 0.0.20 |
From: <ro...@mo...> - 2002-08-04 18:35:04
|
CVSROOT: /CVS/ReactOS Module name: rosapps Repository: rosapps/winfile/ Changes by: ro...@mo....(none) 02/08/04 11:40:49 Modified files: rosapps/winfile/: Makefile entries.c framewnd.c main.c network.c network.h run.c run.h settings.c shell.c shell.h trace.c treeview.c worker.c Added files: rosapps/winfile/: drivebar.c drivebar.h Log message: Added combobox to drivebar, yet to get working. Whole application needs alot of cleanup. Fixed up makefile plus dependancies and now builds (and runs) with ros-tools. |
From: Eugene I. <ei...@mo...> - 2002-08-04 18:16:02
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/subsys/win32k/objects/ Changes by: ei...@mo....(none) 02/08/04 11:22:00 Modified files: reactos/subsys/win32k/eng/: handle.c reactos/subsys/win32k/include/: object.h reactos/subsys/win32k/objects/: gdiobj.c Log message: Fixed a bug in the new Engxxx objects code. |
From: Eugene I. <ei...@mo...> - 2002-08-04 09:49:05
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/subsys/win32k/objects/ Changes by: ei...@mo....(none) 02/08/04 02:55:11 Modified files: reactos/subsys/win32k/eng/: clip.c handle.c handle.h objects.h palette.c surface.c xlate.c reactos/subsys/win32k/include/: object.h reactos/subsys/win32k/objects/: bitmaps.c color.c dc.c dib.c region.c text.c Log message: Rewrote gdi (Engxxx) objects. |
From: Eugene I. <ei...@mo...> - 2002-08-04 09:47:13
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/apps/tests/gditest/ Changes by: ei...@mo....(none) 02/08/04 02:53:19 Modified files: reactos/apps/tests/gditest/: gditest.c Log message: Added more tests to gditest.c |
From: Eugene I. <ei...@mo...> - 2002-08-04 09:46:04
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/subsys/win32k/eng/ Changes by: ei...@mo....(none) 02/08/04 02:52:05 Removed files: reactos/subsys/win32k/eng/: bitmap.c Log message: Removed deprecated file. |
From: ReactOS S. M. <ro...@mo...> - 2002-08-03 06:03:01
|
building ros-kernel-src-20020802.zip... 6472 ros-kernel-src-20020802.zip building ros-kernel-src-20020802.tar.gz... 4744 ros-kernel-src-20020802.tar.gz tagging module reactos with ss200208 building ros-kernel-src-20020802.patch.gz... 4 ros-kernel-src-20020802.patch.gz building ros-apps-src-20020802.zip... 2180 ros-apps-src-20020802.zip building ros-apps-src-20020802.tar.gz... 1740 ros-apps-src-20020802.tar.gz tagging module rosapps with ss200208 building ros-apps-src-20020802.patch.gz... 4 ros-apps-src-20020802.patch.gz building ros-docs-html-20020802.zip... 2368 ros-docs-html-20020802.zip building ros-docs-html-20020802.tar.gz... 1132 ros-docs-html-20020802.tar.gz tagging module rosdocs with ss200208 building ros-docs-html-20020802.patch.gz... 4 ros-docs-html-20020802.patch.gz |
From: <ek...@mo...> - 2002-08-01 10:23:21
|
CVSROOT: /CVS/ReactOS Module name: rosapps Repository: rosapps/cmd/ Changes by: ek...@mo....(none) 02/08/01 03:29:18 Modified files: rosapps/cmd/: cmd.c dir.c Log message: Don't alloc an extra console upon startup. Added correct calculation of free disk size for drives larger than 2GB. |
From: <ek...@mo...> - 2002-07-29 15:31:10
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/lib/ntdll/def/ Changes by: ek...@mo....(none) 02/07/29 08:37:06 Modified files: reactos/lib/ntdll/def/: ntdll.def ntdll.edf Log message: Added RtlCopyLuidAndAttributesArray() and RtlCopySidAndAttributesArray(). |
From: <ek...@mo...> - 2002-07-29 15:30:24
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/lib/ntdll/rtl/ Changes by: ek...@mo....(none) 02/07/29 08:36:20 Modified files: reactos/lib/ntdll/rtl/: luid.c sid.c Log message: Added RtlCopyLuidAndAttributesArray() and RtlCopySidAndAttributesArray(). |
From: <ek...@mo...> - 2002-07-29 15:28:27
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/ntoskrnl/se/ Changes by: ek...@mo....(none) 02/07/29 08:34:23 Modified files: reactos/ntoskrnl/se/: sid.c token.c Log message: Added RtlCopyLuidAndAttributesArray() and RtlCopySidAndAttributesArray(). |
From: <ek...@mo...> - 2002-07-29 15:27:34
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/include/ddk/ Changes by: ek...@mo....(none) 02/07/29 08:33:31 Modified files: reactos/include/ddk/: rtl.h Log message: Added RtlCopyLuidAndAttributesArray() and RtlCopySidAndAttributesArray(). |
From: <ek...@mo...> - 2002-07-29 15:24:04
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/ntoskrnl/ Changes by: ek...@mo....(none) 02/07/29 08:29:59 Modified files: reactos/ntoskrnl/: ntoskrnl.def ntoskrnl.edf Log message: Added cache flush counters. |
From: <ek...@mo...> - 2002-07-29 15:22:03
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/ntoskrnl/ke/ Changes by: ek...@mo....(none) 02/07/29 08:27:59 Modified files: reactos/ntoskrnl/ke/: main.c Log message: Added cache flush counters. |
From: <ek...@mo...> - 2002-07-29 15:20:50
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/include/ddk/ Changes by: ek...@mo....(none) 02/07/29 08:26:42 Modified files: reactos/include/ddk/: ketypes.h Log message: Added cache flush counters. |
From: Brian P. <bp...@mo...> - 2002-07-29 06:44:11
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/ Changes by: bp...@mo....(none) 02/07/28 23:49:36 Modified files: freeldr/freeldr/: CHANGELOG Log message: Changes in v1.6.2 (7/28/2002) (brianp) - Fix for GetFatEntry16 bug (fathelp.asm) by Mike Lerwill |
From: Brian P. <bp...@mo...> - 2002-07-29 06:44:03
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/include/ Changes by: bp...@mo....(none) 02/07/28 23:49:58 Modified files: freeldr/freeldr/include/: version.h Log message: Changes in v1.6.2 (7/28/2002) (brianp) - Fix for GetFatEntry16 bug (fathelp.asm) by Mike Lerwill |
From: Brian P. <bp...@mo...> - 2002-07-29 06:43:16
|
CVSROOT: /CVS/ReactOS Module name: freeldr Repository: freeldr/freeldr/arch/i386/ Changes by: bp...@mo....(none) 02/07/28 23:49:09 Modified files: freeldr/freeldr/arch/i386/: fathelp.asm Log message: Changes in v1.6.2 (7/28/2002) (brianp) - Fix for GetFatEntry16 bug (fathelp.asm) by Mike Lerwill |
From: <ek...@mo...> - 2002-07-27 12:55:48
|
CVSROOT: /CVS/ReactOS Module name: reactos Repository: reactos/ntoskrnl/ Changes by: ek...@mo....(none) 02/07/27 06:02:37 Modified files: reactos/ntoskrnl/: ntoskrnl.def ntoskrnl.edf Log message: Added missing fastcall list functions |