Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/sentry-native
Submodule sentry-native updated 68 files
+6 −0 .github/dependabot.yml
+1 −1 .github/workflows/benchmark.yml
+6 −6 .github/workflows/ci.yml
+4 −4 .github/workflows/codeql.yml
+58 −0 .github/workflows/e2e-test.yml
+14 −0 CHANGELOG.md
+108 −2 CMakeLists.txt
+36 −33 README.md
+62 −0 examples/example.c
+127 −1 include/sentry.h
+1 −1 ndk/gradle.properties
+50 −0 src/CMakeLists.txt
+222 −0 src/backends/native/minidump/sentry_minidump_common.c
+57 −0 src/backends/native/minidump/sentry_minidump_common.h
+446 −0 src/backends/native/minidump/sentry_minidump_format.h
+1,617 −0 src/backends/native/minidump/sentry_minidump_linux.c
+1,192 −0 src/backends/native/minidump/sentry_minidump_macos.c
+119 −0 src/backends/native/minidump/sentry_minidump_windows.c
+17 −0 src/backends/native/minidump/sentry_minidump_writer.h
+296 −0 src/backends/native/sentry_crash_context.h
+3,353 −0 src/backends/native/sentry_crash_daemon.c
+71 −0 src/backends/native/sentry_crash_daemon.h
+888 −0 src/backends/native/sentry_crash_handler.c
+17 −0 src/backends/native/sentry_crash_handler.h
+993 −0 src/backends/native/sentry_crash_ipc.c
+119 −0 src/backends/native/sentry_crash_ipc.h
+919 −0 src/backends/sentry_backend_native.c
+30 −4 src/modulefinder/sentry_modulefinder_windows.c
+2 −1 src/path/sentry_path_unix.c
+2 −1 src/path/sentry_path_windows.c
+134 −64 src/sentry_batcher.c
+37 −3 src/sentry_batcher.h
+58 −28 src/sentry_core.c
+2 −2 src/sentry_database.h
+138 −86 src/sentry_logs.c
+8 −12 src/sentry_logs.h
+46 −34 src/sentry_metrics.c
+8 −12 src/sentry_metrics.h
+37 −0 src/sentry_options.c
+4 −0 src/sentry_options.h
+6 −2 src/sentry_scope.c
+2 −0 src/sentry_scope.h
+4 −9 src/sentry_session.c
+1 −1 src/sentry_session.h
+171 −0 src/sentry_sync.h
+1 −1 tests/__init__.py
+8 −3 tests/assertions.py
+6 −0 tests/cmake.py
+5 −0 tests/conditions.py
+85 −48 tests/proxy.py
+2 −0 tests/requirements.txt
+13 −1 tests/test_build_static.py
+659 −0 tests/test_e2e_sentry.py
+119 −6 tests/test_integration_http.py
+17 −1 tests/test_integration_logger.py
+44 −3 tests/test_integration_logs.py
+7 −3 tests/test_integration_metrics.py
+629 −0 tests/test_integration_native.py
+6 −0 tests/test_integration_screenshot.py
+1 −0 tests/unit/CMakeLists.txt
+3 −0 tests/unit/test_concurrency.c
+134 −0 tests/unit/test_logs.c
+43 −0 tests/unit/test_metrics.c
+354 −0 tests/unit/test_native_backend.c
+53 −0 tests/unit/test_options.c
+122 −0 tests/unit/test_session.c
+4 −0 tests/unit/test_utils.c
+24 −0 tests/unit/tests.inc
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<NativeLibrary Include="dbghelp.lib" />
<NativeLibrary Include="winhttp.lib" />
<NativeLibrary Include="Gdi32.lib" />
<NativeLibrary Include="Synchronization.lib" />
</ItemGroup>

<ItemGroup Condition="'$(FrameworkSupportsNative)' == 'true' and ('$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64' or
Expand Down
Loading