mirror of
https://github.com/systemd/systemd.git
synced 2026-07-14 03:20:22 +00:00
cb57dd41595adddb08095298bb1ed258c8ea4877
Reuse the Iterator object from hashmap.h and expose a similar API.
This allows us to do
{
Iterator i;
unsigned n;
BITMAP_FOREACH(n, b, i) {
Iterator j;
unsigned m;
BITMAP_FOREACH(m, b, j) {
...
}
}
}
without getting confused. Requested by David.
systemd - System and Service Manager
Details
- General information about systemd can be found in the systemd Wiki
- Information about build requirements are provided in the README file
Languages
C
88.9%
Shell
5.2%
Python
4.7%
Meson
1.1%