thread-safety
Here are 77 public repositories matching this topic...
a thread-safe concurrent map for go
-
Updated
Nov 26, 2019 - Go
-
Updated
Sep 1, 2017 - Swift
It would be nice if someone can extend the readme file with proper conversion.
Checklist for code reviews
-
Updated
Mar 9, 2020
cross-platform coroutine library in c++
-
Updated
May 25, 2020 - C++
Unless I'm missing something, it seems the ACKQueue does not clean up after its self when you ACK the items. I discovered this function by looking over the unit tests. Is it expected that users call this function manually? It seems that clear_acked_data() should always be called after ackq.ack(item) if you don't want the sqlite DB to grow unbounded?
Minimize lock-free queue ever!
-
Updated
Sep 14, 2018 - C
C++11 header only wrapper for mutexes and locks.
-
Updated
Mar 11, 2020 - C++
Concurrency made simple in Swift.
-
Updated
May 1, 2019 - Swift
An Go library of synchronization primitives to help make use of hardware transactional memory (HTM)
-
Updated
Oct 3, 2018 - Go
The comments of ghe cops show what kind of prectice is considered bad.
To improve it is alao relevant to understand what ia being considered the better practice.
Could you add examples or links to show how to do better in the comments?
lock-free FIFO queue by C native built it, easy built cross platform(no extra dependencies needed) , guarantee thread safety memory management ever!
-
Updated
Feb 5, 2020 - C
-
Updated
Feb 29, 2020 - Rust
A high performance lock free map type for go.
-
Updated
Apr 19, 2018 - Go
Spring + Universal + Isomorphic + JWT + React + Redux + React Router + Flow + Webpack + LESS -- Isomorphic Web Template
-
Updated
Apr 20, 2018 - JavaScript
-
Updated
Jun 20, 2018 - Java
A simple Ruby decorator to make your objects thread-safe
-
Updated
Jul 3, 2019 - Ruby
A modern C++ wrapper library for net-snmp, designed to be thread-safe with v2/v3: Sessions may not be shared across threads
-
Updated
Nov 8, 2019 - C++
Auto generated thread-safe map written in golang.
-
Updated
Feb 18, 2017 - Go
A light, high-performance, concurrent, thread-safe skip list implementation written in Golang.
-
Updated
Apr 23, 2018 - Go
Thread-safe map (cache) with various time to live of keys
-
Updated
Mar 28, 2020 - Java
The Swift Pocket Bible - the fastest way to Swift
-
Updated
Aug 12, 2019 - Swift
Yet Another Attempt to Upstream the FreeBSD Port of Valgrind
-
Updated
May 24, 2020 - C
Thread-safe connection pool
-
Updated
Oct 7, 2019 - Python
Improve this page
Add a description, image, and links to the thread-safety topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the thread-safety topic, visit your repo's landing page and select "manage topics."


const char* getIp(void) {
return "192.168.1.1";
}
above should be
const char* getIp(const el::LogMessage *l) {
return "192.168.1.1";
}