[Cmake-commits] CMake branch, master, updated. v3.1.0-rc2-469-gd90e288
Brad King
brad.king at kitware.com
Wed Dec 3 10:02:08 EST 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, master has been updated
via d90e288b7babf6cd493383e425c9e4d21905fa25 (commit)
via 930178283a749c4020265259ea3f828552affba2 (commit)
via e6db4c5a4ede8039ed525e3facebd7e0eb7ec1b7 (commit)
via 05d6531c7a8ecfad513a0e76b44b273b70fa919b (commit)
from d91feda4136b8fb9bc3002b38ba8c08fca9cd62c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d90e288b7babf6cd493383e425c9e4d21905fa25
commit d90e288b7babf6cd493383e425c9e4d21905fa25
Merge: d91feda 9301782
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Dec 3 10:02:07 2014 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Dec 3 10:02:07 2014 -0500
Merge topic 'file-LOCK-command'
93017828 Help: Add notes for topic 'file-LOCK-command'
e6db4c5a file: Add LOCK subcommand to do file and directory locking
05d6531c cmSystemTools: Add StringToInt helper
-----------------------------------------------------------------------
Summary of changes:
Help/command/file.rst | 30 +++
Help/release/dev/file-LOCK-command.rst | 5 +
Source/CMakeLists.txt | 6 +
Source/cmFileCommand.cxx | 203 ++++++++++++++++++++
Source/cmFileCommand.h | 1 +
Source/cmFileLock.cxx | 78 ++++++++
Source/cmFileLock.h | 74 +++++++
Source/cmFileLockPool.cxx | 198 +++++++++++++++++++
Source/cmFileLockPool.h | 100 ++++++++++
Source/cmFileLockResult.cxx | 111 +++++++++++
Source/cmFileLockResult.h | 85 ++++++++
Source/cmFileLockUnix.cxx | 102 ++++++++++
Source/cmFileLockWin32.cxx | 126 ++++++++++++
Source/cmGlobalGenerator.h | 10 +
Source/cmLocalGenerator.cxx | 6 +
Source/cmMakefile.cxx | 10 +
Source/cmSystemTools.cxx | 8 +
Source/cmSystemTools.h | 3 +
.../LOCK-error-file-create-fail-result.txt} | 0
.../file/LOCK-error-file-create-fail-stderr.txt | 8 +
.../file/LOCK-error-file-create-fail.cmake | 3 +
.../LOCK-error-guard-incorrect-result.txt} | 0
.../file/LOCK-error-guard-incorrect-stderr.txt | 6 +
.../RunCMake/file/LOCK-error-guard-incorrect.cmake | 1 +
.../LOCK-error-incorrect-timeout-result.txt} | 0
.../file/LOCK-error-incorrect-timeout-stderr.txt | 4 +
.../LOCK-error-incorrect-timeout-trail-result.txt} | 0
.../LOCK-error-incorrect-timeout-trail-stderr.txt | 4 +
.../file/LOCK-error-incorrect-timeout-trail.cmake | 1 +
.../file/LOCK-error-incorrect-timeout.cmake | 1 +
.../LOCK-error-lock-fail-result.txt} | 0
.../RunCMake/file/LOCK-error-lock-fail-stderr.txt | 6 +
Tests/RunCMake/file/LOCK-error-lock-fail.cmake | 6 +
.../LOCK-error-negative-timeout-result.txt} | 0
.../file/LOCK-error-negative-timeout-stderr.txt | 4 +
.../file/LOCK-error-negative-timeout.cmake | 1 +
.../LOCK-error-no-function-result.txt} | 0
.../file/LOCK-error-no-function-stderr.txt | 8 +
Tests/RunCMake/file/LOCK-error-no-function.cmake | 1 +
.../LOCK-error-no-guard-result.txt} | 0
Tests/RunCMake/file/LOCK-error-no-guard-stderr.txt | 4 +
Tests/RunCMake/file/LOCK-error-no-guard.cmake | 1 +
.../LOCK-error-no-path-result.txt} | 0
Tests/RunCMake/file/LOCK-error-no-path-stderr.txt | 4 +
Tests/RunCMake/file/LOCK-error-no-path.cmake | 1 +
.../LOCK-error-no-result-variable-result.txt} | 0
.../file/LOCK-error-no-result-variable-stderr.txt | 4 +
.../file/LOCK-error-no-result-variable.cmake | 1 +
.../LOCK-error-no-timeout-result.txt} | 0
.../RunCMake/file/LOCK-error-no-timeout-stderr.txt | 4 +
Tests/RunCMake/file/LOCK-error-no-timeout.cmake | 1 +
.../LOCK-error-timeout-result.txt} | 0
Tests/RunCMake/file/LOCK-error-timeout-stderr.txt | 12 ++
Tests/RunCMake/file/LOCK-error-timeout-stdout.txt | 1 +
Tests/RunCMake/file/LOCK-error-timeout.cmake | 17 ++
.../LOCK-error-unknown-option-result.txt} | 0
.../file/LOCK-error-unknown-option-stderr.txt | 6 +
.../RunCMake/file/LOCK-error-unknown-option.cmake | 1 +
Tests/RunCMake/file/LOCK-stdout.txt | 11 ++
Tests/RunCMake/file/LOCK.cmake | 40 ++++
Tests/RunCMake/file/RunCMakeTest.cmake | 14 ++
.../file/subdir_test_unlock/CMakeLists.txt | 2 +
Tests/RunCMake/file/timeout-script.cmake | 5 +
63 files changed, 1339 insertions(+)
create mode 100644 Help/release/dev/file-LOCK-command.rst
create mode 100644 Source/cmFileLock.cxx
create mode 100644 Source/cmFileLock.h
create mode 100644 Source/cmFileLockPool.cxx
create mode 100644 Source/cmFileLockPool.h
create mode 100644 Source/cmFileLockResult.cxx
create mode 100644 Source/cmFileLockResult.h
create mode 100644 Source/cmFileLockUnix.cxx
create mode 100644 Source/cmFileLockWin32.cxx
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-file-create-fail-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-file-create-fail-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-file-create-fail.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-guard-incorrect-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-guard-incorrect-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-guard-incorrect.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-incorrect-timeout-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-incorrect-timeout-stderr.txt
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-incorrect-timeout-trail-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-incorrect-timeout-trail-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-incorrect-timeout-trail.cmake
create mode 100644 Tests/RunCMake/file/LOCK-error-incorrect-timeout.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-lock-fail-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-lock-fail-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-lock-fail.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-negative-timeout-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-negative-timeout-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-negative-timeout.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-no-function-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-no-function-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-no-function.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-no-guard-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-no-guard-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-no-guard.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-no-path-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-no-path-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-no-path.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-no-result-variable-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-no-result-variable-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-no-result-variable.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-no-timeout-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-no-timeout-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-no-timeout.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-timeout-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-timeout-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-timeout-stdout.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-timeout.cmake
copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => file/LOCK-error-unknown-option-result.txt} (100%)
create mode 100644 Tests/RunCMake/file/LOCK-error-unknown-option-stderr.txt
create mode 100644 Tests/RunCMake/file/LOCK-error-unknown-option.cmake
create mode 100644 Tests/RunCMake/file/LOCK-stdout.txt
create mode 100644 Tests/RunCMake/file/LOCK.cmake
create mode 100644 Tests/RunCMake/file/subdir_test_unlock/CMakeLists.txt
create mode 100644 Tests/RunCMake/file/timeout-script.cmake
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list