[RTL] Improve the FILE header section. Brought to you by Adam Stachowicz. CORE-10114
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 7 Nov 2015 12:22:52 +0000 (12:22 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 7 Nov 2015 12:22:52 +0000 (12:22 +0000)
svn path=/trunk/; revision=69831

15 files changed:
reactos/lib/rtl/amd64/debug_asm.S
reactos/lib/rtl/amd64/slist.S
reactos/lib/rtl/arm/debug_asm.S
reactos/lib/rtl/arm/except.c
reactos/lib/rtl/byteswap.c
reactos/lib/rtl/heapuser.c
reactos/lib/rtl/i386/debug_asm.S
reactos/lib/rtl/i386/except.c
reactos/lib/rtl/i386/except_asm.s
reactos/lib/rtl/i386/res_asm.s
reactos/lib/rtl/i386/rtlmem.s
reactos/lib/rtl/i386/thread.c
reactos/lib/rtl/powerpc/except.c
reactos/lib/rtl/powerpc/rtlswap.s
reactos/lib/rtl/powerpc/thread.c

index 4ffbe68..22a9f10 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS Run-Time Library
  * PURPOSE:           Debug Routines
- * FILE:              lib/rtl/i386/debug.S
+ * FILE:              lib/rtl/amd64/debug_asm.S
  * PROGRAMER:         Timo Kreuzer (timo.kreuzer@reactos.org)
  */
 
index c677aa6..928cb52 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
- * FILE:            lib/rtl/amd64/interlck.S
+ * FILE:            lib/rtl/amd64/slist.S
  * PURPOSE:         Rtl Interlocked Functions for amd64
  * PROGRAMMERS:     Timo Kreuzer
  */
index 93532f3..c223edc 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * PROJECT:         ReactOS Kernel
  * LICENSE:         BSD - See COPYING.ARM in the top level directory
- * FILE:            rtl/arm/debug_asm.S
+ * FILE:            lib/rtl/arm/debug_asm.S
  * PURPOSE:         Cross-privilege Debugging and Exception Support for ARM
  * PROGRAMMERS:     ReactOS Portable Systems Group
  */
index c205ea7..34b4171 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS Run-Time Library
  * PURPOSE:           User-mode exception support for IA-32
- * FILE:              lib/rtl/arm/exception.c
+ * FILE:              lib/rtl/arm/except.c
  * PROGRAMERS:
  */
 
index 6afb2e6..7ea0b1f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
- * FILE:            lib/rtl/mem.c
+ * FILE:            lib/rtl/byteswap.c
  * PURPOSE:         Memory functions
  * PROGRAMMER:      David Welch (welch@mcmail.com)
  */
index ba74797..0d8cdab 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
- * FILE:            lib/rtl/heap.c
+ * FILE:            lib/rtl/heapuser.c
  * PURPOSE:         RTL Heap backend allocator (user mode only functions)
  * PROGRAMMERS:     Copyright 2010 Aleksey Bragin
  */
index fa443a8..88376f1 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS Run-Time Library
  * PURPOSE:           Debug Routines
- * FILE:              lib/rtl/i386/debug.S
+ * FILE:              lib/rtl/i386/debug_asm.S
  * PROGRAMER:         Alex Ionescu (alex@relsoft.net)
  */
 
index 20a7704..7054a0f 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS Run-Time Library
  * PURPOSE:           User-mode exception support for IA-32
- * FILE:              lib/rtl/i386/exception.c
+ * FILE:              lib/rtl/i386/except.c
  * PROGRAMERS:        Alex Ionescu (alex@relsoft.net)
  *                    Casper S. Hornstrup (chorns@users.sourceforge.net)
  */
index 53b07c6..7c23858 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS Runtime Library (RTL)
- * FILE:            lib/rtl/i386/except_asm.S
+ * FILE:            lib/rtl/i386/except_asm.s
  * PURPOSE:         User-mode exception support for IA-32
  * PROGRAMMERS:     Alex Ionescu (alex@relsoft.net)
  *                  Stefan Ginsberg (stefan.ginsberg@reactos.org)
index 5af744c..eba5a23 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         GNU GPL - See COPYING in the top level directory
  * PROJECT:           ReactOS Run-Time Library
  * PURPOSE:           
- * FILE:              lib/rtl/i386/res_asm.S
+ * FILE:              lib/rtl/i386/res_asm.s
  * PROGRAMER:         
  */
 
index 639ac70..eb93f89 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         GNU GPL - See COPYING in the top level directory
  * PROJECT:           ReactOS Run-Time Library
  * PURPOSE:           Memory functions
- * FILE:              lib/rtl/i386/rtlswap.S
+ * FILE:              lib/rtl/i386/rtlmem.s
  * PROGRAMER:         Alex Ionescu (alex.ionescu@reactos.org)
  */
 
index 5f223fc..aa74d8b 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS system libraries
  * PURPOSE:           Rtl user thread functions
- * FILE:              lib/rtl/thread.c
+ * FILE:              lib/rtl/i386/thread.c
  * PROGRAMERS:
  *                    Alex Ionescu (alex@relsoft.net)
  *                    Eric Kohl
index 817ba30..4c5e088 100644 (file)
@@ -1,7 +1,7 @@
 /* COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS Runtime Library
  * PURPOSE:         User-Mode Exception Support
- * FILE:            lib/rtl/exception.c
+ * FILE:            lib/rtl/powerpc/except.c
  * PROGRAMERS:      Alex Ionescu (alex@relsoft.net)
  *                  David Welch <welch@cwcom.net>
  *                  Skywing <skywing@valhallalegends.com>
index 6455fa5..424bc0d 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS Run-Time Library
  * PURPOSE:           Byte swap functions
- * FILE:              lib/rtl/i386/rtlswap.S
+ * FILE:              lib/rtl/powerpc/rtlswap.s
  * PROGRAMER:         Alex Ionescu (alex.ionescu@reactos.org)
  */
 
index b7a3204..183f59d 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS system libraries
  * PURPOSE:           Rtl user thread functions
- * FILE:              lib/rtl/thread.c
+ * FILE:              lib/rtl/powerpc/thread.c
  * PROGRAMERS:
  *                    Alex Ionescu (alex@relsoft.net)
  *                    Eric Kohl