NEWS: Add missing list of changes for v1.25
[dwarves.git] / lib / ctracer_relay.h
blobc53281c1abb00a0b05239ce9aac34e4505bdc99c
1 #ifndef _CTRACER_RELAY_H_
2 #define _CTRACER_RELAY_H_ 1
3 /*
4 Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of version 2 of the GNU General Public License as
8 published by the Free Software Foundation.
9 */
11 struct trace_entry {
12 unsigned long long nsec;
13 unsigned long long probe_type:1; /* Entry or exit */
14 unsigned long long function_id:63;
15 const void *object;
18 void ctracer__method_hook(const unsigned long long now,
19 const int probe_type,
20 const unsigned long long function,
21 const void *object, const int state_len);
23 #endif