return _tep_register_comm(tep, comm, pid, true);
 }
 
-int tep_register_trace_clock(struct tep_handle *tep, const char *trace_clock)
-{
-       tep->trace_clock = strdup(trace_clock);
-       if (!tep->trace_clock) {
-               errno = ENOMEM;
-               return -1;
-       }
-       return 0;
-}
-
 struct func_map {
        unsigned long long              addr;
        char                            *func;
                free_handler(handle);
        }
 
-       free(tep->trace_clock);
        free(tep->events);
        free(tep->sort_events);
        free(tep->func_resolver);
 
 void tep_reset_function_resolver(struct tep_handle *tep);
 int tep_register_comm(struct tep_handle *tep, const char *comm, int pid);
 int tep_override_comm(struct tep_handle *tep, const char *comm, int pid);
-int tep_register_trace_clock(struct tep_handle *tep, const char *trace_clock);
 int tep_register_function(struct tep_handle *tep, char *name,
                          unsigned long long addr, char *mod);
 int tep_register_print_string(struct tep_handle *tep, const char *fmt,