- Timestamp:
- Apr 18, 2008 4:38:25 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29873
- Location:
- trunk/include/iprt
- Files:
-
- 51 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/alloc.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Memory Allocation.2 * Incredibly Portable Runtime - Memory Allocation. 3 3 */ 4 4 -
trunk/include/iprt/alloca.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - alloca().2 * Incredibly Portable Runtime - alloca(). 3 3 */ 4 4 -
trunk/include/iprt/asm.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Assembly Functions.2 * Incredibly Portable Runtime - Assembly Functions. 3 3 */ 4 4 -
trunk/include/iprt/assert.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Assertions.2 * Incredibly Portable Runtime - Assertions. 3 3 */ 4 4 -
trunk/include/iprt/avl.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - AVL Trees.2 * Incredibly Portable Runtime - AVL Trees. 3 3 */ 4 4 -
trunk/include/iprt/cdefs.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Common C and C++ definitions.2 * Incredibly Portable Runtime - Common C and C++ definitions. 3 3 */ 4 4 … … 32 32 33 33 34 /** @defgroup grp_rt_cdefs innotekPortable Runtime Common Definitions and Macros34 /** @defgroup grp_rt_cdefs Incredibly Portable Runtime Common Definitions and Macros 35 35 * @{ 36 36 */ -
trunk/include/iprt/cpputils.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - C++ Utilities (useful templates, defines and such).2 * Incredibly Portable Runtime - C++ Utilities (useful templates, defines and such). 3 3 */ 4 4 -
trunk/include/iprt/cpuset.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - CPU Set.2 * Incredibly Portable Runtime - CPU Set. 3 3 */ 4 4 -
trunk/include/iprt/crc32.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - CRC32.2 * Incredibly Portable Runtime - CRC32. 3 3 */ 4 4 -
trunk/include/iprt/crc64.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - CRC64.2 * Incredibly Portable Runtime - CRC64. 3 3 */ 4 4 -
trunk/include/iprt/critsect.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Critical Sections.2 * Incredibly Portable Runtime - Critical Sections. 3 3 */ 4 4 -
trunk/include/iprt/ctype.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - ctype.h wrapper and C locale variants.2 * Incredibly Portable Runtime - ctype.h wrapper and C locale variants. 3 3 */ 4 4 -
trunk/include/iprt/dir.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Directory Manipulation.2 * Incredibly Portable Runtime - Directory Manipulation. 3 3 */ 4 4 -
trunk/include/iprt/env.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Process Environment Strings.2 * Incredibly Portable Runtime - Process Environment Strings. 3 3 */ 4 4 … … 48 48 /** 49 49 * Creates an empty environment block. 50 * 51 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 52 * 50 * 51 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 52 * 53 53 * @param pEnv Where to store the handle of the new environment block. 54 54 */ … … 78 78 /** 79 79 * Get the execve/spawnve/main envp. 80 * 80 * 81 81 * All returned strings are in the current process' codepage. 82 82 * This array is only valid until the next RTEnv call. 83 * 83 * 84 84 * @returns Pointer to the raw array of environment variables. 85 85 * @returns NULL if Env is NULL or invalid. 86 * 86 * 87 87 * @param Env Environment block handle. 88 88 */ … … 92 92 /** 93 93 * Checks if an environment variable exists in the default environment block. 94 * 95 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 96 * 97 * @param pszVar The environment variable name. 98 * @remark WARNING! The current implementation does not perform the appropriate 94 * 95 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 96 * 97 * @param pszVar The environment variable name. 98 * @remark WARNING! The current implementation does not perform the appropriate 99 99 * codeset conversion. We'll figure this out when it becomes necessary. 100 100 */ … … 103 103 /** 104 104 * Checks if an environment variable exists in a specific environment block. 105 * 106 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 107 * 105 * 106 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 107 * 108 108 * @param Env The environment handle. 109 109 * @param pszVar The environment variable name. … … 113 113 /** 114 114 * Gets an environment variable from the default environment block. (getenv). 115 * 116 * The caller is responsible for ensuring that nobody changes the environment 115 * 116 * The caller is responsible for ensuring that nobody changes the environment 117 117 * while it's using the returned string pointer! 118 * 118 * 119 119 * @returns Pointer to read only string on success, NULL if the variable wasn't found. 120 * 121 * @param pszVar The environment variable name. 122 * 123 * @remark WARNING! The current implementation does not perform the appropriate 120 * 121 * @param pszVar The environment variable name. 122 * 123 * @remark WARNING! The current implementation does not perform the appropriate 124 124 * codeset conversion. We'll figure this out when it becomes necessary. 125 125 */ … … 128 128 /** 129 129 * Gets an environment variable in a specific environment block. 130 * 131 * @returns IPRT status code. 132 * 130 * 131 * @returns IPRT status code. 132 * 133 133 * @param Env The environment handle. 134 134 * @param pszVar The environment variable name. … … 141 141 /** 142 142 * Puts an variable=value string into the environment (putenv). 143 * 144 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 145 * 146 * @param pszVarEqualValue The variable '=' value string. If the value and '=' is 143 * 144 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 145 * 146 * @param pszVarEqualValue The variable '=' value string. If the value and '=' is 147 147 * omitted, the variable is removed from the environment. 148 * 148 * 149 149 * @remark Don't assume the value is copied. 150 * @remark WARNING! The current implementation does not perform the appropriate 150 * @remark WARNING! The current implementation does not perform the appropriate 151 151 * codeset conversion. We'll figure this out when it becomes necessary. 152 152 */ … … 155 155 /** 156 156 * Puts a copy of the passed in 'variable=value' string into the environment block. 157 * 158 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 159 * 157 * 158 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 159 * 160 160 * @param Env Handle of the environment block. 161 * @param pszVarEqualValue The variable '=' value string. If the value and '=' is 161 * @param pszVarEqualValue The variable '=' value string. If the value and '=' is 162 162 * omitted, the variable is removed from the environment. 163 163 */ … … 166 166 /** 167 167 * Sets an environment variable (setenv(,,1)). 168 * 169 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 170 * 168 * 169 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 170 * 171 171 * @param pszVar The environment variable name. 172 172 * @param pszValue The environment variable value. 173 * 174 * @remark WARNING! The current implementation does not perform the appropriate 173 * 174 * @remark WARNING! The current implementation does not perform the appropriate 175 175 * codeset conversion. We'll figure this out when it becomes necessary. 176 176 */ … … 179 179 /** 180 180 * Sets an environment variable (setenv(,,1)). 181 * 182 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 183 * 181 * 182 * @returns IPRT status code. Typical error is VERR_NO_MEMORY. 183 * 184 184 * @param Env The environment handle. 185 185 * @param pszVar The environment variable name. … … 190 190 /** 191 191 * Removes an environment variable from the default environment block. 192 * 192 * 193 193 * @returns IPRT status code. 194 194 * @returns VINF_ENV_VAR_NOT_FOUND if the variable was not found. 195 * 196 * @param pszVar The environment variable name. 197 * 198 * @remark WARNING! The current implementation does not perform the appropriate 195 * 196 * @param pszVar The environment variable name. 197 * 198 * @remark WARNING! The current implementation does not perform the appropriate 199 199 * codeset conversion. We'll figure this out when it becomes necessary. 200 200 */ … … 203 203 /** 204 204 * Removes an environment variable from the specified environment block. 205 * 205 * 206 206 * @returns IPRT status code. 207 207 * @returns VINF_ENV_VAR_NOT_FOUND if the variable was not found. 208 * 208 * 209 209 * @param Env The environment handle. 210 210 * @param pszVar The environment variable name. -
trunk/include/iprt/err.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Status Codes.2 * Incredibly Portable Runtime - Status Codes. 3 3 */ 4 4 -
trunk/include/iprt/err.sed
r8155 r8163 1 1 ## @file 2 # innotekPortable Runtime - SED script for converting VBox/err.h to .mac.2 # Incredibly Portable Runtime - SED script for converting VBox/err.h to .mac. 3 3 # 4 4 -
trunk/include/iprt/file.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - File I/O.2 * Incredibly Portable Runtime - File I/O. 3 3 */ 4 4 -
trunk/include/iprt/fs.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Filesystem.2 * Incredibly Portable Runtime - Filesystem. 3 3 */ 4 4 -
trunk/include/iprt/getopt.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Command Line Parsing.2 * Incredibly Portable Runtime - Command Line Parsing. 3 3 */ 4 4 -
trunk/include/iprt/heap.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - A Simple Heap.2 * Incredibly Portable Runtime - A Simple Heap. 3 3 */ 4 4 -
trunk/include/iprt/initterm.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Runtime Init/Term.2 * Incredibly Portable Runtime - Runtime Init/Term. 3 3 */ 4 4 … … 36 36 __BEGIN_DECLS 37 37 38 /** @defgroup grp_rt innotekPortable Runtime APIs38 /** @defgroup grp_rt Incredibly Portable Runtime APIs 39 39 * @{ 40 40 */ -
trunk/include/iprt/ldr.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Loader.2 * Incredibly Portable Runtime - Loader. 3 3 */ 4 4 … … 87 87 /** 88 88 * Opens a binary image file using kLdr. 89 * 89 * 90 90 * @returns iprt status code. 91 91 * @param pszFilename Image filename. -
trunk/include/iprt/lock.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - RTLock Classes for Scope-based Locking.2 * Incredibly Portable Runtime - RTLock Classes for Scope-based Locking. 3 3 */ 4 4 -
trunk/include/iprt/log.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Logging.2 * Incredibly Portable Runtime - Logging. 3 3 */ 4 4 … … 43 43 44 44 /** 45 * innotekPortable Runtime Logging Groups.45 * Incredibly Portable Runtime Logging Groups. 46 46 * (Remember to update RT_LOGGROUP_NAMES!) 47 47 * … … 71 71 72 72 /** @def RT_LOGGROUP_NAMES 73 * innotekPortable Runtime Logging group names.73 * Incredibly Portable Runtime Logging group names. 74 74 * 75 75 * Must correspond 100% to RTLOGGROUP! -
trunk/include/iprt/md5.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Message-Digest algorithm 5.2 * Incredibly Portable Runtime - Message-Digest algorithm 5. 3 3 */ 4 4 -
trunk/include/iprt/mem.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Memory Management and Manipulation.2 * Incredibly Portable Runtime - Memory Management and Manipulation. 3 3 */ 4 4 -
trunk/include/iprt/memobj.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Memory Objects (Ring-0).2 * Incredibly Portable Runtime - Memory Objects (Ring-0). 3 3 */ 4 4 -
trunk/include/iprt/memory
r4747 r8163 1 1 /** @file 2 * innotekPortable Runtime - C++ Extensions: memory.2 * Incredibly Portable Runtime - C++ Extensions: memory. 3 3 */ 4 4 -
trunk/include/iprt/mp.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Multiprocessor.2 * Incredibly Portable Runtime - Multiprocessor. 3 3 */ 4 4 -
trunk/include/iprt/param.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Parameter Definitions.2 * Incredibly Portable Runtime - Parameter Definitions. 3 3 */ 4 4 -
trunk/include/iprt/path.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Path Manipulation.2 * Incredibly Portable Runtime - Path Manipulation. 3 3 */ 4 4 -
trunk/include/iprt/process.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Process Management.2 * Incredibly Portable Runtime - Process Management. 3 3 */ 4 4 -
trunk/include/iprt/rand.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Random Numbers and Byte Streams.2 * Incredibly Portable Runtime - Random Numbers and Byte Streams. 3 3 */ 4 4 -
trunk/include/iprt/req.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Request packets2 * Incredibly Portable Runtime - Request packets 3 3 */ 4 4 -
trunk/include/iprt/runtime.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Include Everything.2 * Incredibly Portable Runtime - Include Everything. 3 3 */ 4 4 -
trunk/include/iprt/semaphore.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Semaphore.2 * Incredibly Portable Runtime - Semaphore. 3 3 */ 4 4 -
trunk/include/iprt/spinlock.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Spinlocks.2 * Incredibly Portable Runtime - Spinlocks. 3 3 */ 4 4 -
trunk/include/iprt/stdarg.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - stdarg.h wrapper.2 * Incredibly Portable Runtime - stdarg.h wrapper. 3 3 */ 4 4 -
trunk/include/iprt/stdint.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - stdint.h wrapper (for backlevel compilers like MSC).2 * Incredibly Portable Runtime - stdint.h wrapper (for backlevel compilers like MSC). 3 3 */ 4 4 -
trunk/include/iprt/stream.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - I/O Stream.2 * Incredibly Portable Runtime - I/O Stream. 3 3 */ 4 4 -
trunk/include/iprt/string.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - String Manipluation.2 * Incredibly Portable Runtime - String Manipluation. 3 3 */ 4 4 -
trunk/include/iprt/system.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - System.2 * Incredibly Portable Runtime - System. 3 3 */ 4 4 -
trunk/include/iprt/table.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Abstract Table/Trees.2 * Incredibly Portable Runtime - Abstract Table/Trees. 3 3 */ 4 4 -
trunk/include/iprt/tcp.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - TCP/IP.2 * Incredibly Portable Runtime - TCP/IP. 3 3 */ 4 4 -
trunk/include/iprt/thread.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Threads.2 * Incredibly Portable Runtime - Threads. 3 3 */ 4 4 -
trunk/include/iprt/time.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Time.2 * Incredibly Portable Runtime - Time. 3 3 */ 4 4 -
trunk/include/iprt/timer.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Timer.2 * Incredibly Portable Runtime - Timer. 3 3 */ 4 4 … … 124 124 /** CPU mask. */ 125 125 #define RTTIMER_FLAGS_CPU_MASK 0xff 126 /** Convert a CPU number (0-based) to RTTimerCreateEx flags. 126 /** Convert a CPU number (0-based) to RTTimerCreateEx flags. 127 127 * This will automatically OR in the RTTIMER_FLAG_CPU_SPECIFIC flag. */ 128 128 #define RTTIMER_FLAGS_CPU(iCpu) ( (iCpu) | RTTIMER_FLAG_CPU_SPECIFIC ) -
trunk/include/iprt/types.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Types.2 * Incredibly Portable Runtime - Types. 3 3 */ 4 4 … … 110 110 111 111 112 /** @defgroup grp_rt_types innotekPortable Runtime Base Types112 /** @defgroup grp_rt_types Incredibly Portable Runtime Base Types 113 113 * @{ 114 114 */ -
trunk/include/iprt/uni.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Unicode Code Points.2 * Incredibly Portable Runtime - Unicode Code Points. 3 3 */ 4 4 -
trunk/include/iprt/uuid.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Universal Unique Identifiers (UUID).2 * Incredibly Portable Runtime - Universal Unique Identifiers (UUID). 3 3 */ 4 4 -
trunk/include/iprt/zip.h
r8155 r8163 1 1 /** @file 2 * innotekPortable Runtime - Compression.2 * Incredibly Portable Runtime - Compression. 3 3 */ 4 4
Note:
See TracChangeset
for help on using the changeset viewer.