vbox的更動 39612 路徑 trunk/src/VBox/Runtime/r3/posix
- 時間撮記:
- 2011-12-14 下午02:19:55 (13 年 以前)
- 位置:
- trunk/src/VBox/Runtime/r3/posix
- 檔案:
-
- 修改 3 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/r3/posix/dir-posix.cpp
r39083 r39612 78 78 79 79 80 RTDECL(int) RTDirCreate(const char *pszPath, RTFMODE fMode )80 RTDECL(int) RTDirCreate(const char *pszPath, RTFMODE fMode, uint32_t fCreate) 81 81 { 82 82 int rc; -
trunk/src/VBox/Runtime/r3/posix/path-posix.cpp
r36906 r39612 523 523 524 524 525 RTR3DECL(int) RTPathUnlink(const char *pszPath, uint32_t fUnlink) 526 { 527 return VERR_NOT_IMPLEMENTED; 528 } 529 530 525 531 RTDECL(bool) RTPathExists(const char *pszPath) 526 532 { -
trunk/src/VBox/Runtime/r3/posix/symlink-posix.cpp
r33426 r39612 92 92 93 93 94 RTDECL(int) RTSymlinkCreate(const char *pszSymlink, const char *pszTarget, RTSYMLINKTYPE enmType )94 RTDECL(int) RTSymlinkCreate(const char *pszSymlink, const char *pszTarget, RTSYMLINKTYPE enmType, uint32_t fCreate) 95 95 { 96 96 /* … … 125 125 } 126 126 127 LogFlow(("RTSymlinkCreate(%p={%s}, %p={%s}, %d ): returns %Rrc\n", pszSymlink, pszSymlink, pszTarget, pszTarget, enmType, rc));128 return rc; 129 } 130 131 132 RTDECL(int) RTSymlinkDelete(const char *pszSymlink )127 LogFlow(("RTSymlinkCreate(%p={%s}, %p={%s}, %d, %#x): returns %Rrc\n", pszSymlink, pszSymlink, pszTarget, pszTarget, enmType, fCreate, rc)); 128 return rc; 129 } 130 131 132 RTDECL(int) RTSymlinkDelete(const char *pszSymlink, uint32_t fDelete) 133 133 { 134 134 char const *pszNativeSymlink; … … 154 154 } 155 155 156 LogFlow(("RTSymlinkDelete(%p={%s} ): returns %Rrc\n", pszSymlink, pszSymlink, rc));157 return rc; 158 } 159 160 161 RTDECL(int) RTSymlinkRead(const char *pszSymlink, char *pszTarget, size_t cbTarget )156 LogFlow(("RTSymlinkDelete(%p={%s}, #%x): returns %Rrc\n", pszSymlink, pszSymlink, fDelete, rc)); 157 return rc; 158 } 159 160 161 RTDECL(int) RTSymlinkRead(const char *pszSymlink, char *pszTarget, size_t cbTarget, uint32_t fRead) 162 162 { 163 163 char *pszMyTarget;
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器