| commit | 7f3980a7b2c9f95ab3b106a94fe6e63158155b0b | [log] [tgz] |
|---|---|---|
| author | James Robinson <jamesr@users.noreply.github.com> | Tue Feb 20 09:49:20 2024 -0800 |
| committer | GitHub <noreply@github.com> | Tue Feb 20 09:49:20 2024 -0800 |
| tree | 233b52a337d816d83c9126991ee763573383ad86 | |
| parent | d2942a86d7b8fc4cba4f73294efb53a3e47dc751 [diff] |
[Fuzzer] Use user signal to coordinate handler shutdown (#82067) This updates the signal handle thread coordinating to use a user signal bit on the SignalHandlerEvent to coordinate shutdown instead of closing the event handle. Closing the event handle is racy as the handle may be closed before the signal handler thread resolves the handle value in _zx_object_wait_many() and we would like to make this an explicit error. Using the user signal bit 1 instead and then closing the event object after the signal handler thread is joined cannot race as the wait will terminate whether the signal is raised before or after the wait begins.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.