Changeset 96159 in vbox
- Timestamp:
- Aug 12, 2022 10:13:29 AM (2 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r96157 r96159 1740 1740 $$(xargs $$(QUIET)$$(SED) -rn -f "$$(VBOX_PATH_RUNTIME_SRC)/nocrt-aliases.sed" --append "$$@" , $$(filter %.c %.cpp %.asm, $$^) ) 1741 1741 $$(QUIET)$$(APPEND) -n "$$@" "" "" 1742 $$(QUIET)$$(CP) --changed -f -- "$$@" "$$(patsubst %.ts,% s,$$@)"1742 $$(QUIET)$$(CP) --changed -f -- "$$@" "$$(patsubst %.ts,%,$$@)" 1743 1743 1744 1744 $$($(target)_0_OUTDIR)/genalias/genalias.ts + $$($(target)_2_VBOX_NOCRT_ALIAS_FILES): | $$(VBOX_GENALIAS) … … 1854 1854 common/sort/nocrt-qsort_r.cpp \ 1855 1855 common/sort/nocrt-bsearch.cpp \ 1856 common/string/nocrt-atof.cpp \1857 1856 common/string/nocrt-strdup.cpp \ 1858 1857 common/string/nocrt-stricmp.cpp \ 1858 common/string/nocrt-strtod.cpp \ 1859 common/string/nocrt-atof.cpp \ 1859 1860 common/string/nocrt-strtol.cpp \ 1860 1861 common/string/nocrt-strtoll.cpp \ -
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r93115 r96159 154 154 #endif 155 155 #ifdef ERANGE 156 case ERANGE: return VERR_ INVALID_PARAMETER; /** @todo fix duplicate error */156 case ERANGE: return VERR_OUT_OF_RANGE; 157 157 #endif 158 158 #ifdef EDEADLK -
trunk/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp
r93115 r96159 156 156 #endif 157 157 #ifdef ERANGE 158 //case VERR_INVALID_PARAMETER: return ERANGE; 158 case VERR_OUT_OF_RANGE: return ERANGE; 159 case VERR_FLOAT_UNDERFLOW: return ERANGE; 160 case VWRN_FLOAT_UNDERFLOW: return ERANGE; 161 case VERR_FLOAT_OVERFLOW: return ERANGE; 162 case VWRN_FLOAT_OVERFLOW: return ERANGE; 159 163 #endif 160 164 #ifdef EDEADLK
Note:
See TracChangeset
for help on using the changeset viewer.