vbox的更動 36555 路徑 trunk/src/VBox/Runtime/r3/posix
- 時間撮記:
- 2011-4-5 下午12:34:09 (14 年 以前)
- 位置:
- trunk/src/VBox/Runtime/r3/posix
- 檔案:
-
- 修改 3 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp
r33540 r36555 509 509 * @param enmType The thread type to be assumed for the current thread. 510 510 */ 511 intrtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType)511 DECLHIDDEN(int) rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType) 512 512 { 513 513 Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END); … … 644 644 * @param enmPriority The priority to validate and set. 645 645 */ 646 intrtProcNativeSetPriority(RTPROCPRIORITY enmPriority)646 DECLHIDDEN(int) rtProcNativeSetPriority(RTPROCPRIORITY enmPriority) 647 647 { 648 648 Assert(enmPriority > RTPROCPRIORITY_INVALID && enmPriority < RTPROCPRIORITY_LAST); … … 740 740 * @param enmType The thread type. 741 741 */ 742 intrtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)742 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType) 743 743 { 744 744 Assert(enmType > RTTHREADTYPE_INVALID && enmType < RTTHREADTYPE_END); -
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r35877 r36555 90 90 91 91 92 intrtThreadNativeInit(void)92 DECLHIDDEN(int) rtThreadNativeInit(void) 93 93 { 94 94 /* … … 189 189 * @param pThread Pointer to the thread structure. 190 190 */ 191 intrtThreadNativeAdopt(PRTTHREADINT pThread)191 DECLHIDDEN(int) rtThreadNativeAdopt(PRTTHREADINT pThread) 192 192 { 193 193 /* … … 212 212 213 213 214 voidrtThreadNativeDestroy(PRTTHREADINT pThread)214 DECLHIDDEN(void) rtThreadNativeDestroy(PRTTHREADINT pThread) 215 215 { 216 216 if (pThread == (PRTTHREADINT)pthread_getspecific(g_SelfKey)) … … 264 264 265 265 266 intrtThreadNativeCreate(PRTTHREADINT pThread, PRTNATIVETHREAD pNativeThread)266 DECLHIDDEN(int) rtThreadNativeCreate(PRTTHREADINT pThread, PRTNATIVETHREAD pNativeThread) 267 267 { 268 268 /* -
trunk/src/VBox/Runtime/r3/posix/utf8-posix.cpp
r31961 r36555 57 57 * @returns Pointer to read-only string with the codeset name. 58 58 */ 59 const char *rtStrGetLocaleCodeset(void)59 DECLHIDDEN(const char *) rtStrGetLocaleCodeset(void) 60 60 { 61 61 return nl_langinfo(CODESET); … … 70 70 * @param pThread The thread in question. 71 71 */ 72 voidrtStrIconvCacheInit(PRTTHREADINT pThread)72 DECLHIDDEN(void) rtStrIconvCacheInit(PRTTHREADINT pThread) 73 73 { 74 74 for (size_t i = 0; i < RT_ELEMENTS(pThread->ahIconvs); i++) … … 81 81 * @param pThread The thread in question. 82 82 */ 83 voidrtStrIconvCacheDestroy(PRTTHREADINT pThread)83 DECLHIDDEN(void) rtStrIconvCacheDestroy(PRTTHREADINT pThread) 84 84 { 85 85 for (size_t i = 0; i < RT_ELEMENTS(pThread->ahIconvs); i++) … … 409 409 * @param enmCacheIdx The iconv cache index. 410 410 */ 411 intrtStrConvert(const char *pchInput, size_t cchInput, const char *pszInputCS,412 char **ppszOutput, size_t cbOutput, const char *pszOutputCS,413 unsigned cFactor, RTSTRICONV enmCacheIdx)411 DECLHIDDEN(int) rtStrConvert(const char *pchInput, size_t cchInput, const char *pszInputCS, 412 char **ppszOutput, size_t cbOutput, const char *pszOutputCS, 413 unsigned cFactor, RTSTRICONV enmCacheIdx) 414 414 { 415 415 Assert(enmCacheIdx >= 0 && enmCacheIdx < RTSTRICONV_END);
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器