summaryrefslogtreecommitdiff
path: root/libdm/libdm-timestamp.c
Commit message (Collapse)AuthorAgeFilesLines
* build: Don't generate symlinks in include/ dirJoe Thornber2018-05-141-1/+1
| | | | | | | As we start refactoring the code to break dependencies (see doc/refactoring.txt), I want us to use full paths in the includes (eg, #include "base/data-struct/list.h"). This makes it more obvious when we're breaking abstraction boundaries, eg, including a file in metadata/ from base/
* doc: change fsf addressZdenek Kabelac2016-01-211-1/+1
| | | | | Hmm rpmlint suggest fsf is using a different address these days, so lets keep it up-to-date
* libdm: do not in include internal bits/time.h headerNatanael Copa2015-08-141-1/+0
| | | | | | | | | | | | | | | Do not include bits/time.h as it is an internal libc header file. A comment at the top of the glibc specific bits/time.h says: "Never include this file directly; use <time.h> instead." This fixes the following build error with musl libc: libdm-timestamp.c:37:23: fatal error: bits/time.h: No such file or directory --- Compile tested with Alpine Linx (musl libc) and ubuntu 15.04 libdm/libdm-timestamp.c | 1 - 1 file changed, 1 deletion(-)
* libdm: add dm_timestamp_copy()Bryn M. Reeves2015-08-121-0/+5
|
* libdm: ensure new dm_timestamp objects are initializedBryn M. Reeves2015-08-081-1/+1
| | | | | Allocate a dm_timestamp with dm_zalloc() to ensure the memory is initialized to a known state.
* dmsetup: Report timestamps of ioctls with -vvv.Alasdair G Kergon2015-08-051-0/+4
| | | | If enabled, record timestamp immediately after the ioctl() returns.
* libdm: Add dm_timestamp functions.Alasdair G Kergon2015-07-291-0/+170