1UUID_TIME(3) Libuuid API UUID_TIME(3)
2
3
4
6 uuid_time - extract the time at which the UUID was created
7
9 #include <uuid.h>
10
11 time_t uuid_time(uuid_t uu, struct timeval *ret_tv)
12
14 The uuid_time function extracts the time at which the supplied time-
15 based UUID uu was created. Note that the UUID creation time is only
16 encoded within certain types of UUIDs. This function can only reason‐
17 ably expect to extract the creation time for UUIDs created with the
18 uuid_generate_time(3) and uuid_generate_time_safe(3) functions. It may
19 or may not work with UUIDs created by other mechanisms.
20
22 The time at which the UUID was created, in seconds since January 1,
23 1970 GMT (the epoch), is returned (see time(2)). The time at which the
24 UUID was created, in seconds and microseconds since the epoch, is also
25 stored in the location pointed to by ret_tv (see gettimeofday(2)).
26
28 Theodore Y. Ts'o
29
31 libuuid is part of the util-linux package since version 2.15.1 and is
32 available from https://www.kernel.org/pub/linux/utils/util-linux/.
33
35 uuid(3), uuid_clear(3), uuid_compare(3), uuid_copy(3), uuid_gener‐
36 ate(3), uuid_is_null(3), uuid_parse(3), uuid_unparse(3)
37
38
39
40util-linux May 2009 UUID_TIME(3)