Commit | Line | Data |
---|---|---|
1a2b34be MD |
1 | 2011-06-12 ust 0.14 |
2 | * Rename trace_mark() API to ust_marker(). Old macros kept for | |
3 | slow deprecation. | |
4 | * Tracepoint API is now private to UST. | |
5 | * Introduction of the TRACEPOINT_EVENT API (work in progress). | |
6 | Please use ust_marker() API while we complete TRACEPOINT_EVENT. | |
7 | * Privatize many headers which should have always been internal | |
8 | to UST. At the moment, only marker.h should be included by | |
9 | applications. When the TRACEPOINT_EVENT API will be completed, | |
10 | then other headers will be useful for the application | |
11 | (tracepoint_event.h, tracepoint.h and, indirectly, probe.h). | |
12 | * Markers: merge fixes from LTTng 0.249 into marker.[ch]. | |
13 | * Add ust/version.h header file, which exports the UST version | |
14 | installed. | |
15 | * Move to liburcu 0.6. Update dependencies. | |
16 | ||
adeffaf5 NC |
17 | 2011-05-19 ust 0.13 |
18 | * API CHANGE!!! trace_mark has been deprecated, new ust_maker, without | |
19 | channel name. ex. ust_marker(name, <format>, args...) | |
20 | * Instrumentation API CHANGE!!! change from trace_<name>(args...) to | |
21 | tracepoint(name, args...), register_trace_<name>(...) to | |
22 | register_tracepoint(name, ...) and unregister_trace_<name>(...) to | |
23 | unregister_tracepoint(name, ...) | |
24 | * Instrumentation API CHANGE!!! TRACE_EVENT -> TRACEPOINT_EVENT etc | |
25 | * Mutliple ust-consumerd fixes | |
26 | * Fix a bug in the tracepoint ptrs section | |
27 | * Clarify licenses | |
28 | * Busybox support in most scripts added | |
29 | * Remove some dead code | |
30 | * List only online pids and pids that can be accessed by current users | |
31 | using libustctl | |
32 | ||
3c087c81 NC |
33 | 2011-03-14 ust 0.12 |
34 | * ARM support | |
35 | * Fix lots of low-level bugs, mostly courtesy of Mathieu and Yannick | |
36 | * Introduce new ustctl cli | |
37 | * API CHANGE!!! libustcmd renamed to libustctl | |
38 | * API CHANGE!!! libustctl now uses sockets instead of pids | |
39 | * Short signal names in scripts for busybox compatibility | |
40 | ||
df39c97f NC |
41 | 2011-01-14 ust 0.11 |
42 | * Fix a serious bug in the newly introduced synchronized timer | |
43 | implementation. | |
44 | * Increase compatibility of an autoconf test | |
45 | ||
7e764ef1 NC |
46 | 2011-01-14 ust 0.10 |
47 | * Run time check for lttng clock source providing synchronized | |
48 | timestamps | |
49 | * Rename of ustd and libustd to ust-consumerd and libustconsumer, | |
50 | remember to run ldconfig | |
51 | ||
8c9d8113 NC |
52 | 2010-12-03 ust 0.9 |
53 | * Cleaned up namespace | |
54 | * Compatible with userspace-rcu version 0.5.2 | |
55 | * Fixed a minor bug in a test | |
56 | ||
9b24f310 NC |
57 | 2010-10-26 ust 0.8 |
58 | * API CHANGE!!! Add data pointer to tracepoint probe | |
59 | void *data is always the first argument to a tracepoint probe | |
60 | * License LGPGv2.1 text and information added | |
61 | * Update COPYING file | |
62 | * Add TRACE_EVENT api proposal, not finalised | |
63 | NOT usable at this point. Only bound to a printf. | |
64 | ustctl command for listing trace event | |
65 | * Multiple fixes | |
66 | Compilation warnings | |
67 | Value and error handling | |
68 | Fix bugs introduce by prior commits | |
69 | Security fix (CVE-2010-3386) | |
70 | Add exit status for ustctl | |
71 | Change malloc to zmalloc for most of UST | |
72 | Remove unused code, syntax cleanup and consistency for markers | |
73 | * New UST internal communication protocol | |
74 | Add message headers | |
75 | Usage of epoll | |
76 | * New testcases | |
77 | * Try to decrease namespace pollution | |
78 | * Fix valgrind for sendmsg bug | |
79 | * tracectl destructor aware of fork | |
80 | ||
fec459ac DG |
81 | 2010-08-16 ust 0.6 |
82 | * add ust strncpy interface for input robustness | |
83 | * multiple memory barrier fix | |
84 | * add libustd: contains the core functionality of ustd | |
85 | * add get/set commands for daemon socket path | |
86 | * fix cacheline aligned to use liburcu value | |
87 | * fix usage of custom probes: use trace_mark_tp | |
88 | * remove ltt_relay_buffer_flush function | |
89 | * add ustctl manpage: force-switch and get/set-sock-path | |
90 | * fix invalid array size and directory creation mode for ustd | |
91 | ||
4bea9b39 PMF |
92 | 2010-06-30 ust 0.5 |
93 | * add support for PowerPC 32 architecture | |
94 | * use clock_gettime(CLOCK_MONOTINIC) instead of gettimeofday() | |
95 | * add several tests | |
96 | * output test suite results in TAP format | |
97 | * add support for traced library unregistration (useful with dlclose()) | |
98 | * add manpages | |
99 | * compile with -fno-strict-antialiasing | |
100 | * add support for channel overwrite and non-collection | |
101 | * update tracepoint api from kernel | |
102 | * fix various bugs and do various cleanups | |
103 | * improve documentation | |
104 | ||
b771c4fd PMF |
105 | 2010-03-17 ust 0.4 |
106 | * remove dependency on libkcompat | |
107 | * use atomic ops from liburcu | |
108 | * libmallocwrap: rename to libustinstr-malloc | |
109 | * libinterfork: rename to libustfork | |
110 | * add a testsuite | |
111 | * add ustctl --get-subbuf-size and --get-subbuf-num | |
112 | * updates for compilation with gcc-4.4 | |
113 | * remove periodical wakeup in listener thread | |
114 | * change benign warnings to debug messages, not to confuse users | |
115 | * ustd: fix destruction to free all file descriptors and memory | |
116 | * libust: close all file descriptors on close | |
117 | * remove periodical wakeup in daemon | |
118 | * code cleanups | |
cb974fbd | 119 | |
b771c4fd PMF |
120 | ust 0.3 |
121 | * fix several issues, stabilizing tracing of large applications | |
122 | * add --set-subbuf-size / --set-subbuf-num options to ustctl | |
123 | * add a signal safe implementation of snprintf | |
124 | ||
125 | ust 0.2 | |
126 | * conversion of the buffering system to per-cpu | |
127 | * update to the liburcu 0.4 API | |
128 | * upgrade to trace format 2.6; the latest lttv may now be used | |
129 | * add support for clone() interception in libinterfork | |
130 | * port refactorings from the kernel tracer up to 0.173 | |
131 | * enhancements/refactor of libustcomm | |
132 | * add sections in the manual about trace viewing and about tracing apps not linked to libust | |
133 | * debugging output is now enabled by adding -DUST_DEBUG to the CFLAGS | |
134 | * usttrace: change ustd socket name to ustd-sock-PID | |
135 | * change app socket directory name for something more descriptive (/tmp/ust-app-socks) | |
136 | * code cleanups | |
137 | * various bug fixes |