all repos — tint2 @ fb9da655dfb036ef37751f91fb6213e426f5ee22

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

src/util/bt.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef BT_H
#define BT_H

#include <sys/types.h>

#define BT_FRAME_SIZE 64
#define BT_MAX_FRAMES 64

struct backtrace_frame {
    char name[BT_FRAME_SIZE];
};

struct backtrace {
    struct backtrace_frame frames[BT_MAX_FRAMES];
    size_t frame_count;
};

void get_backtrace(struct backtrace *bt, int skip);

#endif // BT_H