aboutsummaryrefslogtreecommitdiff
path: root/core/debug/trace/trace_nil.odin
blob: 40478898bcf9c2ded2489ace0836c4e217e43bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//+build !windows !linux !darwin
package debug_trace

_Context :: struct {
}

_init :: proc(ctx: ^Context) -> (ok: bool) {
	return true
}
_destroy :: proc(ctx: ^Context) -> bool {
	return true
}
_frames :: proc(ctx: ^Context, skip: uint, allocator: runtime.Allocator) -> []Frame {
	return nil
}
_resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: runtime.Source_Code_Location) {
	return
}