Attribute Macro timestamp

Source
#[timestamp]
Expand description

This macro should be used to define timestamp function which will be used by utrace to obtain event timestamps.

For example:

#[utrace::timestamp]
fn timestamp() -> u64 {
    ...
}

It should only be invoked in binaries and only once.