Skip to content

Commit 6caebaa

Browse files
authored
Merge d4b428a into f74904f
2 parents f74904f + d4b428a commit 6caebaa

4 files changed

Lines changed: 12 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- Fix a race condition in SentryTracer (#3523)
1616
- App start ends when first frame is drawn when performanceV2 is enabled (#3530)
1717
- Use correct rendered frames timestamp for TTID/TTFD and app start (#3531)
18-
18+
- Move header reference out of "extern C" (#3538)
1919
- Missing transactions when not calling `reportFullyDisplayed` (#3477)
2020

2121
## 8.17.2

Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
#ifndef HDR_SentryCrashMachineContext_h
2929
#define HDR_SentryCrashMachineContext_h
3030

31-
#ifdef __cplusplus
32-
extern "C" {
33-
#endif
34-
3531
#include "SentryCrashThread.h"
3632
#include <mach/mach.h>
3733
#include <stdbool.h>
3834

35+
#ifdef __cplusplus
36+
extern "C" {
37+
#endif
38+
3939
/** Suspend the runtime environment.
4040
*/
4141
void sentrycrashmc_suspendEnvironment(

Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,14 @@
2626
#ifndef SentryCrashStackCursor_h
2727
#define SentryCrashStackCursor_h
2828

29-
#ifdef __cplusplus
30-
extern "C" {
31-
#endif
32-
3329
#include "SentryCrashMachineContext.h"
34-
3530
#include <stdbool.h>
3631
#include <sys/types.h>
3732

33+
#ifdef __cplusplus
34+
extern "C" {
35+
#endif
36+
3837
#define SentryCrashSC_CONTEXT_SIZE 100
3938

4039
/** Point at which to give up walking a stack and consider it a stack overflow.

Sources/SentryCrash/Recording/Tools/SentryCrashThread.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
#ifndef HDR_SentryCrashThread_h
2929
#define HDR_SentryCrashThread_h
3030

31+
#include <stdbool.h>
32+
#include <sys/types.h>
33+
3134
#ifdef __cplusplus
3235
extern "C" {
3336
#endif
3437

35-
#include <stdbool.h>
36-
#include <sys/types.h>
37-
3838
typedef uintptr_t SentryCrashThread;
3939

4040
/** Get a thread's name. Internally, a thread name will

0 commit comments

Comments
 (0)