mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
a613dda7f2
Check unwinding recursive calls. Verify we can unwind in absence of unwind tables. PiperOrigin-RevId: 513506498 Change-Id: Ib87240b7481dae3a4513c944e17a7924a54926e9
11 lines
317 B
C
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_
|