From 484edb6caba38b82cf1d5921e97bf73030c688cd Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Wed, 6 Jan 2021 15:21:16 -0800 Subject: [PATCH] remove azure build status from msgq doc --- messaging/msgq.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/messaging/msgq.md b/messaging/msgq.md index 8af8246..34fe356 100644 --- a/messaging/msgq.md +++ b/messaging/msgq.md @@ -1,7 +1,5 @@ # MSGQ: A lock free single producer multi consumer message queue -[![Build Status](https://dev.azure.com/commaai/default/_apis/build/status/commaai.msgq?branchName=master)](https://dev.azure.com/commaai/default/_build/latest?definitionId=21&branchName=master) - ## What is MSGQ? MSGQ is a system to pass messages from a single producer to multiple consumers. All the consumers need to be able to receive all the messages. It is designed to be a high performance replacement for ZMQ-like SUB/PUB patterns. It uses a ring buffer in shared memory to efficiently read and write data. Each read requires a copy. Writing can be done without a copy, as long as the size of the data is known in advance.