Changeset 41889 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jun 22, 2012 2:20:13 PM (13 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r41887 r41889 364 364 common/rand/randadv.cpp \ 365 365 common/rand/randparkmiller.cpp \ 366 common/rand/randopenssl.cpp \367 366 common/sort/RTSortIsSorted.cpp \ 368 367 common/sort/RTSortApvIsSorted.cpp \ … … 1030 1029 RuntimeBldProg_BLD_TRG_ARCH := $(KBUILD_HOST_ARCH) 1031 1030 RuntimeBldProg_BLD_TRG_CPU := $(KBUILD_HOST_CPU) 1032 RuntimeBldProg_SOURCES := $(filter-out \1033 common/rand/randopenssl.cpp \1034 , $(RuntimeR3_SOURCES))1035 RuntimeBldProg_SOURCES += \1036 generic/RTRandAdvCreateOpenssl-generic.cpp1037 1031 1038 1032 … … 1057 1051 common/checksum/RTSha1Digest.cpp \ 1058 1052 common/checksum/sha% \ 1059 common/rand/randopenssl.cpp \1060 1053 generic/RTLogWriteUser-generic.cpp \ 1061 1054 , $(RuntimeR3_SOURCES)) 1062 1055 RuntimeGuestR3_SOURCES += \ 1063 1056 common/time/timesysalias.cpp \ 1064 VBox/logbackdoor.cpp \ 1065 generic/RTRandAdvCreateOpenssl-generic.cpp 1057 VBox/logbackdoor.cpp 1066 1058 RuntimeGuestR3_SOURCES.$(KBUILD_TARGET) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET)) 1067 1059 RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST)) -
trunk/src/VBox/Runtime/common/rand/rand.cpp
r41887 r41889 62 62 { 63 63 RTRAND hRand; 64 int rc = RTRandAdvCreateOpenssl(&hRand); 65 if (RT_FAILURE(rc)) 66 rc = RTRandAdvCreateSystemFaster(&hRand); 64 int rc = RTRandAdvCreateSystemFaster(&hRand); 67 65 if (RT_FAILURE(rc)) 68 66 rc = RTRandAdvCreateParkMiller(&hRand);
Note:
See TracChangeset
for help on using the changeset viewer.