11
11
#![ allow( bad_style) ]
12
12
13
13
use std:: mem;
14
+ use std:: prelude:: v1:: * ;
14
15
use winapi:: ctypes:: * ;
15
16
use winapi:: shared:: minwindef:: * ;
16
17
use winapi:: um:: processthreadsapi;
@@ -33,49 +34,43 @@ impl Frame {
33
34
}
34
35
35
36
#[ inline( always) ]
36
- pub fn trace ( cb : & mut FnMut ( & super :: Frame ) -> bool ) {
37
- // According to windows documentation, all dbghelp functions are
38
- // single-threaded.
39
- let _g = :: lock :: lock ( ) ;
37
+ pub unsafe fn trace ( cb : & mut FnMut ( & super :: Frame ) -> bool ) {
38
+ // Allocate necessary structures for doing the stack walk
39
+ let process = processthreadsapi :: GetCurrentProcess ( ) ;
40
+ let thread = processthreadsapi :: GetCurrentThread ( ) ;
40
41
41
- unsafe {
42
- // Allocate necessary structures for doing the stack walk
43
- let process = processthreadsapi:: GetCurrentProcess ( ) ;
44
- let thread = processthreadsapi:: GetCurrentThread ( ) ;
42
+ // The CONTEXT structure needs to be aligned on a 16-byte boundary for
43
+ // 64-bit Windows, but currently we don't have a way to express that in
44
+ // Rust. Allocations are generally aligned to 16-bytes, though, so we
45
+ // box this up.
46
+ let mut context = Box :: new ( mem:: zeroed :: < CONTEXT > ( ) ) ;
47
+ winnt:: RtlCaptureContext ( & mut * context) ;
48
+ let mut frame = super :: Frame {
49
+ inner : Frame { inner : mem:: zeroed ( ) } ,
50
+ } ;
51
+ let image = init_frame ( & mut frame. inner . inner , & context) ;
45
52
46
- // The CONTEXT structure needs to be aligned on a 16-byte boundary for
47
- // 64-bit Windows, but currently we don't have a way to express that in
48
- // Rust. Allocations are generally aligned to 16-bytes, though, so we
49
- // box this up.
50
- let mut context = Box :: new ( mem:: zeroed :: < CONTEXT > ( ) ) ;
51
- winnt:: RtlCaptureContext ( & mut * context) ;
52
- let mut frame = super :: Frame {
53
- inner : Frame { inner : mem:: zeroed ( ) } ,
54
- } ;
55
- let image = init_frame ( & mut frame. inner . inner , & context) ;
53
+ // Initialize this process's symbols
54
+ let _c = :: dbghelp_init ( ) ;
56
55
57
- // Initialize this process's symbols
58
- let _c = :: dbghelp_init ( ) ;
56
+ // And now that we're done with all the setup, do the stack walking!
57
+ while dbghelp:: StackWalk64 ( image as DWORD ,
58
+ process,
59
+ thread,
60
+ & mut frame. inner . inner ,
61
+ & mut * context as * mut _ as * mut _ ,
62
+ None ,
63
+ Some ( dbghelp:: SymFunctionTableAccess64 ) ,
64
+ Some ( dbghelp:: SymGetModuleBase64 ) ,
65
+ None ) == TRUE {
66
+ if frame. inner . inner . AddrPC . Offset == frame. inner . inner . AddrReturn . Offset ||
67
+ frame. inner . inner . AddrPC . Offset == 0 ||
68
+ frame. inner . inner . AddrReturn . Offset == 0 {
69
+ break
70
+ }
59
71
60
- // And now that we're done with all the setup, do the stack walking!
61
- while dbghelp:: StackWalk64 ( image as DWORD ,
62
- process,
63
- thread,
64
- & mut frame. inner . inner ,
65
- & mut * context as * mut _ as * mut _ ,
66
- None ,
67
- Some ( dbghelp:: SymFunctionTableAccess64 ) ,
68
- Some ( dbghelp:: SymGetModuleBase64 ) ,
69
- None ) == TRUE {
70
- if frame. inner . inner . AddrPC . Offset == frame. inner . inner . AddrReturn . Offset ||
71
- frame. inner . inner . AddrPC . Offset == 0 ||
72
- frame. inner . inner . AddrReturn . Offset == 0 {
73
- break
74
- }
75
-
76
- if !cb ( & frame) {
77
- break
78
- }
72
+ if !cb ( & frame) {
73
+ break
79
74
}
80
75
}
81
76
}
0 commit comments