summaryrefslogtreecommitdiff
path: root/src/libsystemd/sd-bus/test-bus-kernel-benchmark.c
AgeCommit message (Collapse)AuthorFilesLines
2015-04-29test: rename test-bus-kernel-benchmark to test-bus-benchmarkTom Gundersen1-371/+0
This can now benchmark more than just kdbus.
2015-04-29sd-bus: benchmark - also support testing non-kdbus transportsTom Gundersen1-30/+93
We introduce two news types of benchmarks in chart-mode: - 'legacy' connects using the session bus - 'direct' connects using a peer-to-peer socket We should probably also introduce a mode for testing the dbus1-kdbus proxy.
2015-02-24sd-bus: test-bus-kernel-benchmark: don't rely on fixed unique namesDaniel Mack1-16/+25
The kernel part of kdbus does not allow userspace to make any assumption on which unique address the first user on the bus will get. Instead, use sd_bus_get_unique_name() to get the server's address.
2015-02-23remove unused includesThomas Hindoe Paaboel Andersen1-4/+0
This patch removes includes that are not used. The removals were found with include-what-you-use which checks if any of the symbols from a header is in use.
2014-09-29bus: use 2M as maximum message size in benchmarkDavid Herrmann1-1/+1
The kdbus limit is 2M and we removed the bus-owner override. Therefore, use at most 2M as message size.
2014-07-29time-util: add and use USEC/NSEC_INFINIYKay Sievers1-1/+1
2014-03-18util: replace close_nointr_nofail() by a more useful safe_close()Lennart Poettering1-1/+1
safe_close() automatically becomes a NOP when a negative fd is passed, and returns -1 unconditionally. This makes it easy to write lines like this: fd = safe_close(fd); Which will close an fd if it is open, and reset the fd variable correctly. By making use of this new scheme we can drop a > 200 lines of code that was required to test for non-negative fds or to reset the closed fd variable afterwards.
2014-02-20api: in constructor function calls, always put the returned object pointer ↵Lennart Poettering1-3/+3
first (or second) Previously the returned object of constructor functions where sometimes returned as last, sometimes as first and sometimes as second parameter. Let's clean this up a bit. Here are the new rules: 1. The object the new object is derived from is put first, if there is any 2. The object we are creating will be returned in the next arguments 3. This is followed by any additional arguments Rationale: For functions that operate on an object we always put that object first. Constructors should probably not be too different in this regard. Also, if the additional parameters might want to use varargs which suggests to put them last. Note that this new scheme only applies to constructor functions, not to all other functions. We do give a lot of freedom for those. Note that this commit only changes the order of the new functions we added, for old ones we accept the wrong order and leave it like that.
2014-01-21libsystemd: split up into subdirsTom Gundersen1-0/+303
We still only produce on .so, but let's keep the sources separate to make things a bit less messy.