all repos — tint2 @ 87e1ccc6bf997b8141008a1134a2229b41bb0cc6

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/tracing.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef TRACING_H
#define TRACING_H

#ifdef HAVE_TRACING

void init_tracing();
void cleanup_tracing();

void start_tracing(void *root);
void stop_tracing();
void print_tracing_events();

#endif

#endif