1UNW_DESTROY_ADDR_SPACE(3) Programming Library UNW_DESTROY_ADDR_SPACE(3)
2
3
4
6 unw_destroy_addr_space -- destroy unwind address space
7
9 #include <libunwind.h>
10
11 void unw_destroy_addr_space(unw_addr_space_t as);
12
14 The unw_destroy_addr_space() routine destroys the address space speci‐
15 fied by argument as and thereby releases all associated resources (such
16 as memory).
17
18 Applications must not destroy the local address space
19 unw_local_addr_space. Attempting to do so results in undefined behav‐
20 ior (e.g., the application may crash).
21
23 libunwind(3), unw_create_addr_space(3)
24
26 David Mosberger-Tang
27 Email: dmosberger@gmail.com
28 WWW: http://www.nongnu.org/libunwind/.
29
30
31
32Programming Library 16 August 2007 UNW_DESTROY_ADDR_SPACE(3)