diff options
author | Sean Gillespie <segilles@microsoft.com> | 2017-12-12 19:04:07 -0800 |
---|---|---|
committer | Sean Gillespie <segilles@microsoft.com> | 2017-12-12 19:04:07 -0800 |
commit | 8df01f50ca980ab8840124c74037782f75702032 (patch) | |
tree | 67632498038f401758197663622b1f32a4603eeb /src/gc/env/gcenv.base.h | |
parent | 3a295a078701f72edc18a4404cab7b7e1bc104c7 (diff) | |
download | coreclr-8df01f50ca980ab8840124c74037782f75702032.tar.gz coreclr-8df01f50ca980ab8840124c74037782f75702032.tar.bz2 coreclr-8df01f50ca980ab8840124c74037782f75702032.zip |
Revert "[Local GC] Move knowledge of overlapped I/O objects to the EE through four callbacks (#14982)"
This reverts commit c755e3b7f5d597c8d192675dbaaa337268d93f1c.
Diffstat (limited to 'src/gc/env/gcenv.base.h')
-rw-r--r-- | src/gc/env/gcenv.base.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gc/env/gcenv.base.h b/src/gc/env/gcenv.base.h index e1d40d6003..734b46fd3d 100644 --- a/src/gc/env/gcenv.base.h +++ b/src/gc/env/gcenv.base.h @@ -320,11 +320,6 @@ inline void* ALIGN_DOWN(void* ptr, size_t alignment) return reinterpret_cast<void*>(ALIGN_DOWN(as_size_t, alignment)); } -inline int GetRandomInt(int max) -{ - return rand() % max; -} - typedef struct _PROCESSOR_NUMBER { uint16_t Group; uint8_t Number; |