Changeset 86579 in vbox for trunk/src/VBox
- Timestamp:
- Oct 14, 2020 8:53:56 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140939
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/sysfs.cpp
r84681 r86579 125 125 { 126 126 return rtLinuxConstructPathV(pszBuf, cchBuf, "/sys/", pszFormat, va); 127 } 128 129 130 RTDECL(int) RTLinuxConstructPathV(char *pszPath, size_t cbPath, const char *pszFormat, va_list va) 131 { 132 return rtLinuxSysFsConstructPath(pszPath, cbPath, pszFormat, va); 133 } 134 135 136 RTDECL(int) RTLinuxConstructPath(char *pszPath, size_t cbPath, const char *pszFormat, ...) 137 { 138 va_list va; 139 va_start(va, pszFormat); 140 int rc = rtLinuxSysFsConstructPath(pszPath, cbPath, pszFormat, va); 141 va_end(va); 142 return rc; 127 143 } 128 144
Note:
See TracChangeset
for help on using the changeset viewer.