You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
325 B
16 lines
325 B
4 years ago
|
#include <stdint.h>
|
||
|
|
||
|
#include "arch/getcycles.h"
|
||
|
|
||
|
/* Implemented by listener and workers */
|
||
|
|
||
|
__thread uint64_t generic_thread_lock_duration = 0;
|
||
|
__thread uint64_t generic_thread_start_timestamp = 0;
|
||
|
|
||
|
void
|
||
|
generic_thread_initialize()
|
||
|
{
|
||
|
generic_thread_start_timestamp = __getcycles();
|
||
|
generic_thread_lock_duration = 0;
|
||
|
}
|