On 5/20/19 6:30 PM, Martin Wilck wrote:
> +void get_monotonic_time(struct timespec *res)
> +{
> + struct timespec ts;
> +
> + assert(clock_gettime(CLOCK_MONOTONIC, &ts) == 0);
> + *res = ts;
> +}This is an example of bad coding style because the clock_gettime() call will be skipped if anyone would compile this code with -DNDEBUG. Bart. -- dm-devel mailing list [email protected] https://www.redhat.com/mailman/listinfo/dm-devel
