Changeset 8170 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Apr 18, 2008 5:52:25 PM (17 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 94 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/alloc-r0drv.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/alloc-r0drv.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Log To Debugger, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Log To Debugger, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/alloc-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/assert-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Assertion Workers, Ring-0 Drivers, Darwin.3 * Incredibly Portable Runtime - Assertion Workers, Ring-0 Drivers, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/initterm-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Initialization & Termination, R0 Driver, Darwin.3 * Incredibly Portable Runtime - Initialization & Termination, R0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/memobj-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Memory Objects, Darwin.3 * Incredibly Portable Runtime - Ring-0 Memory Objects, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/mp-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiprocessor, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Multiprocessor, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/process-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Process, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Process, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/semaphore-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Semaphores, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Semaphores, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/spinlock-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Spinlocks, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Spinlocks, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/the-darwin-kernel.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Include all necessary headers for the Darwing kernel.3 * Incredibly Portable Runtime - Include all necessary headers for the Darwing kernel. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/thread-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Threads, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/thread2-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 2), Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Threads (Part 2), Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/darwin/time-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time, Ring-0 Driver, Darwin.3 * Incredibly Portable Runtime - Time, Ring-0 Driver, Darwin. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c
r7042 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 … … 46 46 /* These two statements will define two globals and add initializers 47 47 and destructors that will be called at load/unload time (I think). */ 48 MALLOC_DEFINE(M_IPRTHEAP, "iprtheap", " innotekPortable Runtime - heap");49 MALLOC_DEFINE(M_IPRTCONT, "iprtcont", " innotekPortable Runtime - contiguous");48 MALLOC_DEFINE(M_IPRTHEAP, "iprtheap", "Incredibly Portable Runtime - heap"); 49 MALLOC_DEFINE(M_IPRTCONT, "iprtcont", "Incredibly Portable Runtime - contiguous"); 50 50 51 51 -
trunk/src/VBox/Runtime/r0drv/freebsd/assert-r0drv-freebsd.c
r3705 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Assertion Workers, Ring-0 Drivers, FreeBSD.3 * Incredibly Portable Runtime - Assertion Workers, Ring-0 Drivers, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/initterm-r0drv-freebsd.c
r3680 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Initialization & Termination, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Initialization & Termination, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c
r4989 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Memory Objects, FreeBSD.3 * Incredibly Portable Runtime - Ring-0 Memory Objects, FreeBSD. 4 4 */ 5 5 … … 64 64 65 65 66 MALLOC_DEFINE(M_IPRTMOBJ, "iprtmobj", " innotekPortable Runtime - R0MemObj");66 MALLOC_DEFINE(M_IPRTMOBJ, "iprtmobj", "Incredibly Portable Runtime - R0MemObj"); 67 67 68 68 /******************************************************************************* -
trunk/src/VBox/Runtime/r0drv/freebsd/mp-r0drv-darwin.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiprocessor, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Multiprocessor, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/process-r0drv-freebsd.c
r3680 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Process Management, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Process Management, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
r3680 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Single Release Event Semaphores, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Single Release Event Semaphores, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/semeventmulti-r0drv-freebsd.c
r5334 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/semfastmutex-r0drv-freebsd.c
r3680 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Fast Mutex Semaphores, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Fast Mutex Semaphores, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/spinlock-r0drv-freebsd.c
r3680 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Spinlocks, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Spinlocks, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h
r4542 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Driver, The FreeBSD Kernel Headers.3 * Incredibly Portable Runtime - Ring-0 Driver, The FreeBSD Kernel Headers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/thread-r0drv-freebsd.c
r3680 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 1), Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Threads (Part 1), Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/thread2-r0drv-freebsd.c
r7517 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 2), Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Threads (Part 2), Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/time-r0drv-freebsd.c
r3977 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Time, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/freebsd/timer-r0drv-freebsd.c
r4542 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, FreeBSD.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, FreeBSD. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/generic/RTMpOn-r0drv-generic.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiprocessor, Ring-0 Driver, Generic Stubs.3 * Incredibly Portable Runtime - Multiprocessor, Ring-0 Driver, Generic Stubs. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/initterm-r0drv.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Initialization & Termination, R0 Driver, Common.3 * Incredibly Portable Runtime - Initialization & Termination, R0 Driver, Common. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/RTLogWriteDebugger-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Log To Debugger, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Log To Debugger, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/initterm-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Initialization & Termination, R0 Driver, Linux.3 * Incredibly Portable Runtime - Initialization & Termination, R0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
r8155 r8170 1 1 /* $Revision$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Memory Objects, Linux.3 * Incredibly Portable Runtime - Ring-0 Memory Objects, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiprocessor, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Multiprocessor, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/process-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Process, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Process, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Single Release Event Semaphores, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Single Release Event Semaphores, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/semfastmutex-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Fast Mutex Semaphores, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Fast Mutex Semaphores, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/semmutex-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Mutex Semaphores, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Mutex Semaphores, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Spinlocks, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Spinlocks, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/string.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - wrapper for the linux kernel asm/string.h.3 * Incredibly Portable Runtime - wrapper for the linux kernel asm/string.h. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Include all necessary headers for the Linux kernel.3 * Incredibly Portable Runtime - Include all necessary headers for the Linux kernel. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/thread-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads, Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Threads, Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 2), Ring-0 Driver, Linux.3 * Incredibly Portable Runtime - Threads (Part 2), Ring-0 Driver, Linux. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/memobj-r0drv.cpp
r8155 r8170 1 1 /* $Revision$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Memory Objects, Common Code.3 * Incredibly Portable Runtime - Ring-0 Memory Objects, Common Code. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/mp-r0drv.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiprocessor, Ring-0 Driver, Internal Header.3 * Incredibly Portable Runtime - Multiprocessor, Ring-0 Driver, Internal Header. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Log To Debugger, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Log To Debugger, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Initialization & Termination, R0 Driver, NT.3 * Incredibly Portable Runtime - Initialization & Termination, R0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Memory Objects, NT.3 * Incredibly Portable Runtime - Ring-0 Memory Objects, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiprocessor, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Multiprocessor, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/process-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Process, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Process, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/semevent-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Single Release Event Semaphores, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Single Release Event Semaphores, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/semeventmulti-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/semfastmutex-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Fast Mutex Semaphores, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Fast Mutex Semaphores, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/semmutex-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Mutex Semaphores, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Mutex Semaphores, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/spinlock-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Spinlocks, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Spinlocks, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/the-nt-kernel.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Include all necessary headers for the NT kernel.3 * Incredibly Portable Runtime - Include all necessary headers for the NT kernel. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/thread-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads, Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Threads, Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/thread2-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 2), Ring-0 Driver, NT.3 * Incredibly Portable Runtime - Threads (Part 2), Ring-0 Driver, NT. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/nt/time-r0drv-nt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time, Ring-0 Driver, Nt.3 * Incredibly Portable Runtime - Time, Ring-0 Driver, Nt. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/alloc-r0drv-os2.cpp
r7042 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/assert-r0drv-os2.cpp
r2981 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Assertion Workers, Ring-0 Drivers, OS/2.3 * Incredibly Portable Runtime - Assertion Workers, Ring-0 Drivers, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/initterm-r0drv-os2.cpp
r2981 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Initialization & Termination, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Initialization & Termination, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/memobj-r0drv-os2.cpp
r4155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Memory Objects, OS/2.3 * Incredibly Portable Runtime - Ring-0 Memory Objects, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/process-r0drv-os2.cpp
r3676 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Process Management, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Process Management, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/semevent-r0drv-os2.cpp
r3676 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Single Release Event Semaphores, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Single Release Event Semaphores, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/semeventmulti-r0drv-os2.cpp
r3676 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/semfastmutex-r0drv-os2.cpp
r2981 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Fast Mutex Semaphores, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Fast Mutex Semaphores, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/spinlock-r0drv-os2.cpp
r2981 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Spinlocks, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Spinlocks, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/the-os2-kernel.h
r3699 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Driver, The OS/2 Kernel Headers.3 * Incredibly Portable Runtime - Ring-0 Driver, The OS/2 Kernel Headers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/thread-r0drv-os2.cpp
r2981 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 1), Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Threads (Part 1), Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/thread2-r0drv-os2.cpp
r2981 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 2), Ring-0 Driver, Generic Stubs.3 * Incredibly Portable Runtime - Threads (Part 2), Ring-0 Driver, Generic Stubs. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/time-r0drv-os2.cpp
r2981 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Time, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/os2/timer-r0drv-os2.cpp
r7490 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, OS/2.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, OS/2. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Log To Debugger, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Log To Debugger, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/alloc-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Memory Allocation, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/assert-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Assertion Workers, Ring-0 Drivers, Solaris.3 * Incredibly Portable Runtime - Assertion Workers, Ring-0 Drivers, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/initterm-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Initialization & Termination, R0 Driver, Solaris.3 * Incredibly Portable Runtime - Initialization & Termination, R0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/memobj-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Ring-0 Memory Objects, Solaris.3 * Incredibly Portable Runtime - Ring-0 Memory Objects, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/mp-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiprocessor, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Multiprocessor, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/process-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Process Management, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Process Management, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Semaphores, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Semaphores, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/semeventmulti-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Multiple Release Event Semaphores, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/semfastmutex-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Fast Mutex Semaphores, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Fast Mutex Semaphores, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/spinlock-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Spinlocks, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Spinlocks, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/the-solaris-kernel.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Include all necessary headers for the Solaris kernel.3 * Incredibly Portable Runtime - Include all necessary headers for the Solaris kernel. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/thread-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Threads, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/thread2-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads (Part 2), Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Threads (Part 2), Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/time-r0drv-solaris.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Time, Ring-0 Driver, Solaris. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/r0drv/solaris/timer-r0drv-solaris.c
r8155 r8170 1 1 /** $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Timer, Ring-0 Driver, Solaris.3 * Incredibly Portable Runtime - Timer, Ring-0 Driver, Solaris. 4 4 */ 5 5
Note:
See TracChangeset
for help on using the changeset viewer.