Changeset 21337 in vbox for trunk/src/VBox/Runtime/common/err
- Timestamp:
- Jul 7, 2009 2:58:27 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49685
- Location:
- trunk/src/VBox/Runtime/common/err
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r18329 r21337 34 34 *******************************************************************************/ 35 35 #include <iprt/err.h> 36 #include "internal/iprt.h" 37 36 38 #include <iprt/assert.h> 37 #include <iprt/err.h>38 39 39 40 #if defined(RT_OS_DARWIN) && defined(KERNEL) … … 446 447 } 447 448 } 448 449 RT_EXPORT_SYMBOL(RTErrConvertFromErrno); 450 -
trunk/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp
r18329 r21337 34 34 *******************************************************************************/ 35 35 #include <iprt/err.h> 36 #include "internal/iprt.h" 37 36 38 #include <iprt/assert.h> 37 39 #include <iprt/err.h> … … 456 458 } 457 459 } 458 459 #if defined(RT_OS_LINUX) && defined(IN_MODULE) 460 /* 461 * When we build this in the Linux kernel module, we wish to make the 462 * symbols available to other modules as well. 463 */ 464 # include "the-linux-kernel.h" 465 EXPORT_SYMBOL(RTErrConvertToErrno); 466 #endif 460 RT_EXPORT_SYMBOL(RTErrConvertToErrno); 461 -
trunk/src/VBox/Runtime/common/err/errmsg.cpp
r13836 r21337 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include <iprt/err.h> 36 #include "internal/iprt.h" 37 35 38 #include <iprt/asm.h> 36 39 #include <iprt/string.h> … … 103 106 return &g_aUnknownMsgs[iMsg]; 104 107 } 108 RT_EXPORT_SYMBOL(RTErrGet); 105 109 -
trunk/src/VBox/Runtime/common/err/errmsgxpcom.cpp
r14626 r21337 33 33 *******************************************************************************/ 34 34 #include <iprt/err.h> 35 #include "internal/iprt.h" 36 35 37 #include <iprt/asm.h> 36 38 #include <iprt/string.h> … … 150 152 return &g_aUnknownMsgs[iMsg]; 151 153 } 154 RT_EXPORT_SYMBOL(RTErrCOMGet); 152 155
Note:
See TracChangeset
for help on using the changeset viewer.