Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | modernize: manage cmCommand instances using unique_ptr. | Marc Chevrier | 2019-07-14 | 1 | -1/+1 |
| | |||||
* | Introduce memory management helper: cm_memory.hxx | Marc Chevrier | 2019-07-14 | 1 | -1/+2 |
| | |||||
* | cmUVProcessChain: Add assert() for static analysis tools | Kyle Edwards | 2019-05-14 | 1 | -1/+4 |
| | | | | | | | | | | | | | Some static analysis tools throw a false positive for an out-of-bounds item that is being dereferenced. This out-of-bounds error will never actually happen because of how cmUVProcessChain::InternalData::AddCommand() is being called. Nevertheless, this change adds an assert() to help static analysis tools be absolutely certain that the referenced item is within the vector's bounds. This change also changes the item access to use an index rather than an iterator. | ||||
* | cmUVProcessChain: Add cmUVProcessChain | Kyle Edwards | 2019-05-07 | 1 | -0/+392 |
This class is ultimately intended as a replacement for cmsys::Process. It spawns a series of processes using libuv, piping the output of each command into the next. Note: input support has not yet been implemented because write support has not yet been implemented on cmUVStreambuf. |