Changeset 8170 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Apr 18, 2008 5:52:25 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29880
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 80 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/alloc.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation.3 * Incredibly Portable Runtime - Memory Allocation. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/alloc/heapsimple.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - A Simple Heap.3 * Incredibly Portable Runtime - A Simple Heap. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/checksum/crc32.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRC32.3 * Incredibly Portable Runtime - CRC32. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/checksum/crc64.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRC64.3 * Incredibly Portable Runtime - CRC64. 4 4 * 5 5 * The method to compute the CRC64 is referred to as CRC-64-ISO: -
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Convert errno to iprt status codes.3 * Incredibly Portable Runtime - Convert errno to iprt status codes. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp
r8155 r8170 1 1 /* $Rev$ */ 2 2 /** @file 3 * innotekPortable Runtime - Convert iprt status codes to errno.3 * Incredibly Portable Runtime - Convert iprt status codes to errno. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/err/errmsg.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Status code messages.3 * Incredibly Portable Runtime - Status code messages. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldr.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader.3 * Incredibly Portable Runtime - Binary Image Loader. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldrELF.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader, Executable and Linker Format (ELF).3 * Incredibly Portable Runtime - Binary Image Loader, Executable and Linker Format (ELF). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldrELFRelocatable.cpp.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader, Template for ELF Relocatable Images.3 * Incredibly Portable Runtime - Binary Image Loader, Template for ELF Relocatable Images. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldrEx.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader, Extended Features.3 * Incredibly Portable Runtime - Binary Image Loader, Extended Features. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldrFile.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader, The File Oriented Parts.3 * Incredibly Portable Runtime - Binary Image Loader, The File Oriented Parts. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldrNative.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader, Native interface.3 * Incredibly Portable Runtime - Binary Image Loader, Native interface. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader, Portable Executable (PE).3 * Incredibly Portable Runtime - Binary Image Loader, Portable Executable (PE). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/ldr/ldrkStuff.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Binary Image Loader, kLdr Interface.3 * Incredibly Portable Runtime - Binary Image Loader, kLdr Interface. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/log/logcom.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Logging to Serial Port.3 * Incredibly Portable Runtime - Logging to Serial Port. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/log/logformat.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Log Formatter.3 * Incredibly Portable Runtime - Log Formatter. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/assert.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Assertion Workers.3 * Incredibly Portable Runtime - Assertion Workers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Command Line Parsing3 * Incredibly Portable Runtime - Command Line Parsing 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/rand.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Random Number3 * Incredibly Portable Runtime - Random Number 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/req.cpp
r8155 r8170 1 1 /* $Id: VMReq.cpp 17451 2007-01-15 14:08:28Z bird $ */ 2 2 /** @file 3 * innotekPortable Runtime - Request packets3 * Incredibly Portable Runtime - Request packets 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/sanity-c.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Setup Sanity Checks, C.3 * Incredibly Portable Runtime - Setup Sanity Checks, C. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/sanity-cpp.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Setup Sanity Checks, C++.3 * Incredibly Portable Runtime - Setup Sanity Checks, C++. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/sanity.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Setup Sanity Checks, C and C++.3 * Incredibly Portable Runtime - Setup Sanity Checks, C and C++. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/semspingpong.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Thread Ping-Pong Construct.3 * Incredibly Portable Runtime - Thread Ping-Pong Construct. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/thread.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Threads, common routines.3 * Incredibly Portable Runtime - Threads, common routines. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/misc/zip.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Compression.3 * Incredibly Portable Runtime - Compression. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memchr.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRT Strings, memcpy().3 * Incredibly Portable Runtime - CRT Strings, memcpy(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memchr_alias.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - No-CRT memchr() alias for gcc.3 * Incredibly Portable Runtime - No-CRT memchr() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcmp.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRT Strings, memcmp().3 * Incredibly Portable Runtime - CRT Strings, memcmp(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcmp_alias.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - No-CRT memcmp() alias for gcc.3 * Incredibly Portable Runtime - No-CRT memcmp() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcpy.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRT Strings, memcpy().3 * Incredibly Portable Runtime - CRT Strings, memcpy(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memcpy_alias.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - No-CRT memcpy() alias for gcc.3 * Incredibly Portable Runtime - No-CRT memcpy() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memmove_alias.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - No-CRT memmove() alias for gcc.3 * Incredibly Portable Runtime - No-CRT memmove() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memset.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRT Strings, memset().3 * Incredibly Portable Runtime - CRT Strings, memset(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/memset_alias.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - No-CRT memset() alias for gcc.3 * Incredibly Portable Runtime - No-CRT memset() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/straprintf.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Allocating String Formatters.3 * Incredibly Portable Runtime - Allocating String Formatters. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strchr_alias.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - No-CRT strchr() alias for gcc.3 * Incredibly Portable Runtime - No-CRT strchr() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strcmp_alias.c
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - No-CRT strcmp() alias for gcc.3 * Incredibly Portable Runtime - No-CRT strcmp() alias for gcc. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strcpy.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRT Strings, strcpy().3 * Incredibly Portable Runtime - CRT Strings, strcpy(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strformat.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - String Formatter.3 * Incredibly Portable Runtime - String Formatter. 4 4 */ 5 5 … … 788 788 789 789 /* 790 * innotekPortable Runtime Extensions.790 * Incredibly Portable Runtime Extensions. 791 791 */ 792 792 case 'R': -
trunk/src/VBox/Runtime/common/string/strformatrt.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - IPRT String Formatter Extensions.3 * Incredibly Portable Runtime - IPRT String Formatter Extensions. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strformattype.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - IPRT String Formatter Extensions, Dynamic Types.3 * Incredibly Portable Runtime - IPRT String Formatter Extensions, Dynamic Types. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/string.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - String Manipulation.3 * Incredibly Portable Runtime - String Manipulation. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strlen.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRT Strings, strlen().3 * Incredibly Portable Runtime - CRT Strings, strlen(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strncmp.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - CRT Strings, strncmp().3 * Incredibly Portable Runtime - CRT Strings, strncmp(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strpbrk.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - strpbrk().3 * Incredibly Portable Runtime - strpbrk(). 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strprintf.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - String Formatters.3 * Incredibly Portable Runtime - String Formatters. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strspace.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Unique String Spaces.3 * Incredibly Portable Runtime - Unique String Spaces. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strstrip.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - String Stripping and Trimming.3 * Incredibly Portable Runtime - String Stripping and Trimming. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/strtonum.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - String To Number Convertion.3 * Incredibly Portable Runtime - String To Number Convertion. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/uni.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Unicode.3 * Incredibly Portable Runtime - Unicode. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/unidata.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Unicode Tables3 * Incredibly Portable Runtime - Unicode Tables 4 4 * 5 5 * Automatically Generated by G:/coding/vbox/tree/out/win32/debug/obj/src/VBox/Runtime/uniread/uniread.exe (Jan 30 2006 04:37:06) -
trunk/src/VBox/Runtime/common/string/uniread.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Unicode Specification Reader.3 * Incredibly Portable Runtime - Unicode Specification Reader. 4 4 */ 5 5 … … 613 613 printf("/** @file\n" 614 614 " *\n" 615 " * innotekPortable Runtime - Unicode Tables\n"615 " * Incredibly Portable Runtime - Unicode Tables\n" 616 616 " *\n" 617 617 " * Automatically Generated by %s (" __DATE__ " " __TIME__ ")\n" 618 618 " */\n\n" 619 619 "/*\n" 620 " * Copyright (C) 2006-2008 innotek GmbH\n"620 " * Copyright (C) 2006-2008 Sun Microsystems, Inc.\n" 621 621 " *\n" 622 622 " * This file is part of VirtualBox Open Source Edition (OSE), as\n" -
trunk/src/VBox/Runtime/common/string/utf-16.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - UTF-163 * Incredibly Portable Runtime - UTF-16 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/string/utf-8.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - UTF-8 Decoding.3 * Incredibly Portable Runtime - UTF-8 Decoding. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlgcptr.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTGCPTR, unique keys.3 * Incredibly Portable Runtime - AVL tree, RTGCPTR, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlhcphys.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTHCPHYS, unique keys.3 * Incredibly Portable Runtime - AVL tree, RTHCPHYS, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avllu32.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, uint32_t, unique keys.3 * Incredibly Portable Runtime - AVL tree, uint32_t, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlogcphys.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTGCPHYS, unique keys, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTGCPHYS, unique keys, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlogcptr.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTGCPTR, unique keys, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTGCPTR, unique keys, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlohcphys.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTHCPHYS, unique keys, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTHCPHYS, unique keys, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avloioport.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTIOPORT, unique keys, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTIOPORT, unique keys, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlpv.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, void *, unique keys.3 * Incredibly Portable Runtime - AVL tree, void *, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlrgcptr.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTGCPTR, range, unique keys.3 * Incredibly Portable Runtime - AVL tree, RTGCPTR, range, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlrogcphys.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTGCPHYS, range, unique keys, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTGCPHYS, range, unique keys, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlrogcptr.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTGCPTR, range, unique keys, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTGCPTR, range, unique keys, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlroioport.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTIOPORT, range, unique keys, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTIOPORT, range, unique keys, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlroogcptr.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTGCPTR, range, unique keys, overlapping ranges, offset pointers.3 * Incredibly Portable Runtime - AVL tree, RTGCPTR, range, unique keys, overlapping ranges, offset pointers. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlu32.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, uint32_t, unique keys.3 * Incredibly Portable Runtime - AVL tree, uint32_t, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/avlul.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, unsigned long, unique keys.3 * Incredibly Portable Runtime - AVL tree, unsigned long, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/table/table.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - AVL tree, RTHCPHYS, unique keys.3 * Incredibly Portable Runtime - AVL tree, RTHCPHYS, unique keys. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/time/time.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time.3 * Incredibly Portable Runtime - Time. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/time/timeprog.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time Relative to Program Start.3 * Incredibly Portable Runtime - Time Relative to Program Start. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/time/timesup.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time using SUPLib.3 * Incredibly Portable Runtime - Time using SUPLib. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/time/timesupA.asm
r8155 r8170 1 1 ; $Id$%ifndef IN_GUEST 2 2 ;; @file 3 ; innotekPortable Runtime - Time using SUPLib, the Assembly Implementation.3 ; Incredibly Portable Runtime - Time using SUPLib, the Assembly Implementation. 4 4 ; 5 5 -
trunk/src/VBox/Runtime/common/time/timesupA.mac
r8155 r8170 1 1 ; $Id$ 2 2 ;; @file 3 ; innotekPortable Runtime - Time using SUPLib, the Assembly Code Template.3 ; Incredibly Portable Runtime - Time using SUPLib, the Assembly Code Template. 4 4 ; 5 5 -
trunk/src/VBox/Runtime/common/time/timesupref.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time using SUPLib, the C Implementation.3 * Incredibly Portable Runtime - Time using SUPLib, the C Implementation. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/time/timesupref.h
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time using SUPLib, the C Code Template.3 * Incredibly Portable Runtime - Time using SUPLib, the C Code Template. 4 4 */ 5 5 -
trunk/src/VBox/Runtime/common/time/timesysalias.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Time using RTTimeSystem*.3 * Incredibly Portable Runtime - Time using RTTimeSystem*. 4 4 */ 5 5
Note:
See TracChangeset
for help on using the changeset viewer.