sandboxed-api/sandboxed_api/sandbox2/testcases/symbolize_lib.h
Wiktor Garbacz a613dda7f2 Test stack unwinding more thoroughly
Check unwinding recursive calls.
Verify we can unwind in absence of unwind tables.

PiperOrigin-RevId: 513506498
Change-Id: Ib87240b7481dae3a4513c944e17a7924a54926e9
2023-03-02 05:09:49 -08:00

11 lines
317 B
C

#ifndef SANDBOXED_API_SANDBOX2_TESTCASES_SYMBOLIZE_LIB_H_
#define SANDBOXED_API_SANDBOX2_TESTCASES_SYMBOLIZE_LIB_H_
#include "absl/base/attributes.h"
ABSL_ATTRIBUTE_NOINLINE
ABSL_ATTRIBUTE_NO_TAIL_CALL
void LibRecurse(void (*cb)(int), int data, int n);
#endif // SANDBOXED_API_SANDBOX2_TESTCASES_SYMBOLIZE_LIB_H_