Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| | | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636 | ||||
* | Build TaskQueueTest in threads=on builds, fixes regression from r335608. | Nico Weber | 2018-06-27 | 1 | -0/+2 |
| | | | | llvm-svn: 335724 | ||||
* | Fix LLVM_ENABLE_THREADS=0 builds after r335440. | Nico Weber | 2018-06-26 | 1 | -1/+2 |
| | | | | llvm-svn: 335608 | ||||
* | One more build fix for non MSVC compilers. | Zachary Turner | 2018-06-25 | 1 | -6/+6 |
| | | | | llvm-svn: 335443 | ||||
* | Add a TaskQueue that can serialize work on a ThreadPool. | Zachary Turner | 2018-06-25 | 1 | -0/+105 |
We have ThreadPool, which can execute work asynchronously on N background threads, but sometimes you need to make sure the work is executed asynchronously but also serially. That is, if task B is enqueued after task A, then task B should not begin until task A has completed. This patch adds such a class. Differential Revision: https://reviews.llvm.org/D48240 llvm-svn: 335440 |