Questions tagged [talloc]

Talloc is a reference counted memory pool system stored hierarchically. It comes with its own destructors. It is built on top of C standard library and gives utility which simplifies allocation and deallocation of data for complex structure.

2 questions
2
votes
1 answer

Protecting talloced memory shared by multiple threads against writes

In our application (a network daemon), there are roughly three uses of heap allocated memory. Memory allocated on startup to hold the result of parsing the application's global configuration. Memory allocated for thread-specific data as threads are…
Arran Cudbard-Bell
  • 5,912
  • 2
  • 26
  • 48
0
votes
1 answer

ERROR: Dependency "talloc" not found, tried pkgconfig; How to install talloc dependency on Ubuntu 20.04?

I am trying to download Open5gs on my 20.04 Ubuntu Machine but keep getting this error: 'Dependency "talloc" not found', when I run the script "meson build --prefix='/pwd'/install I tried fixing the issue using sudo apt-get install…