Changeset 8170 in vbox for trunk/src/VBox/Runtime/r0drv/freebsd
- Timestamp:
- Apr 18, 2008 5:52:25 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29880
- Location:
- trunk/src/VBox/Runtime/r0drv/freebsd
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.