vbox的更動 44472 路徑 trunk/src/VBox/Runtime/r3/posix
- 時間撮記:
- 2013-1-30 下午03:55:32 (12 年 以前)
- 位置:
- trunk/src/VBox/Runtime/r3/posix
- 檔案:
-
- 刪除 1 筆資料
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/r3/posix/pipe-posix.cpp
r40102 r44472 36 36 #include <iprt/err.h> 37 37 #include <iprt/mem.h> 38 #include <iprt/poll.h> 38 39 #include <iprt/string.h> 39 40 #include <iprt/thread.h> … … 55 56 #endif 56 57 58 #include "internal/pipe.h" 59 57 60 58 61 /******************************************************************************* … … 668 671 } 669 672 673 674 int rtPipePollGetHandle(RTPIPE hPipe, uint32_t fEvents, PRTHCINTPTR phNative) 675 { 676 RTPIPEINTERNAL *pThis = hPipe; 677 AssertPtrReturn(pThis, VERR_INVALID_HANDLE); 678 AssertReturn(pThis->u32Magic == RTPIPE_MAGIC, VERR_INVALID_HANDLE); 679 680 AssertReturn(!(fEvents & RTPOLL_EVT_READ) || pThis->fRead, VERR_INVALID_PARAMETER); 681 AssertReturn(!(fEvents & RTPOLL_EVT_WRITE) || !pThis->fRead, VERR_INVALID_PARAMETER); 682 683 *phNative = pThis->fd; 684 return VINF_SUCCESS; 685 } 686
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器