/* * s390x stack implementation * * Copyright (c) 2017 Red Hat Inc * * Authors: * Thomas Huth * David Hildenbrand * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU Library General Public License version 2. */ #include #include int backtrace_frame(const void *frame, const void **return_addrs, int max_depth) { printf("TODO: Implement backtrace_frame(%p, %p, %d) function!\n", frame, return_addrs, max_depth); return 0; } int backtrace(const void **return_addrs, int max_depth) { printf("TODO: Implement backtrace(%p, %d) function!\n", return_addrs, max_depth); return 0; }