X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fbacktrace.c;h=c6829d77c19bda1feef4cec6ad8f58ae40266145;hb=e879d33e8398219d5c9af8fd565c97303f126809;hp=91549db347812b516e2eb4fb27b93c54349deb62;hpb=e4fd8d288ad1530be566cdeb503fb63a43c149ff;p=openvswitch diff --git a/lib/backtrace.c b/lib/backtrace.c index 91549db3..c6829d77 100644 --- a/lib/backtrace.c +++ b/lib/backtrace.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,17 +15,34 @@ */ #include + #include "backtrace.h" + #include #include #include #include + #include "compiler.h" #include "vlog.h" VLOG_DEFINE_THIS_MODULE(backtrace); -static uintptr_t OVS_UNUSED +#ifdef HAVE_BACKTRACE +#include +void +backtrace_capture(struct backtrace *b) +{ + void *frames[BACKTRACE_MAX_FRAMES]; + int i; + + b->n_frames = backtrace(frames, BACKTRACE_MAX_FRAMES); + for (i = 0; i < b->n_frames; i++) { + b->frames[i] = (uintptr_t) frames[i]; + } +} +#elif __GNUC__ +static uintptr_t get_max_stack(void) { static const char file_name[] = "/proc/self/maps"; @@ -83,7 +100,6 @@ in_stack(void *p) void backtrace_capture(struct backtrace *backtrace) { -#ifdef __GNUC__ void **frame; size_t n; @@ -96,7 +112,11 @@ backtrace_capture(struct backtrace *backtrace) backtrace->frames[n++] = (uintptr_t) frame[1]; } backtrace->n_frames = n; -#else +} +#else /* !HAVE_BACKTRACE && !__GNUC__ */ +void +backtrace_capture(struct backtrace *backtrace) +{ backtrace->n_frames = 0; -#endif } +#endif