diff options
author | Craig Scott <craig.scott@crascit.com> | 2019-11-05 06:14:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-05 17:08:35 (GMT) |
commit | 6ce27d3a2efad4e40d4354a7d17e4259fb4c1e24 (patch) | |
tree | fdd14390b5c295105385f4703eed31067af2a264 /Source/CTest/cmCTestMultiProcessHandler.h | |
parent | a7c1e15cc46aa97cc19c9eb84fe8cad55c650bfa (diff) | |
download | CMake-6ce27d3a2efad4e40d4354a7d17e4259fb4c1e24.zip CMake-6ce27d3a2efad4e40d4354a7d17e4259fb4c1e24.tar.gz CMake-6ce27d3a2efad4e40d4354a7d17e4259fb4c1e24.tar.bz2 |
cmCTestMultiProcessHandler: Rename resource locking functions
Renaming these ahead of other refactoring which will use the
previous names. The previous names more accurately reflect their
purpose after this commit anyway (talking about locking and
unlocking rather than allocating and deallocating).
Diffstat (limited to 'Source/CTest/cmCTestMultiProcessHandler.h')
-rw-r--r-- | Source/CTest/cmCTestMultiProcessHandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestMultiProcessHandler.h b/Source/CTest/cmCTestMultiProcessHandler.h index da716f0..f0ffdbb 100644 --- a/Source/CTest/cmCTestMultiProcessHandler.h +++ b/Source/CTest/cmCTestMultiProcessHandler.h @@ -134,8 +134,8 @@ protected: bool CheckStopTimePassed(); void SetStopTimePassed(); - void AllocateResources(int index); - void DeallocateResources(int index); + void LockResources(int index); + void UnlockResources(int index); bool AllocateHardware(int index); bool TryAllocateHardware( |