Skip to content

Commit 2a4688f

Browse files
[mq] working branch - merge d34dc6f on top of main at 978619c
{"baseBranch":"main","baseCommit":"978619c227f7c364da8a114159c973461c92a184","createdAt":"2025-12-17T16:44:28.650709Z","headSha":"d34dc6f40a87ff22fda289c1955f1b2e12745a3b","id":"69d23653-ecd2-4cb6-93f5-9d9961a5de65","nextMergeabilityCheckAt":"2025-12-17T16:45:28.470642Z","priority":"200","pullRequestNumber":"1404","queuedAt":"2025-12-17T18:57:21.774548Z","status":"STATUS_QUEUED"}
2 parents 43ed1ab + d34dc6f commit 2a4688f

File tree

6 files changed

+896
-4
lines changed

6 files changed

+896
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libdd-profiling-ffi/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ datadog-ffe-ffi = ["dep:datadog-ffe-ffi"]
3838
build_common = { path = "../build-common" }
3939

4040
[dependencies]
41+
allocator-api2 = { version = "0.2.21", default-features = false, features = ["alloc"] }
4142
anyhow = "1.0"
4243
libdd-data-pipeline-ffi = { path = "../libdd-data-pipeline-ffi", default-features = false, optional = true }
4344
libdd-crashtracker-ffi = { path = "../libdd-crashtracker-ffi", default-features = false, optional = true}

libdd-profiling-ffi/src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@
88
#![cfg_attr(not(test), deny(clippy::unimplemented))]
99

1010
mod exporter;
11+
mod profile_error;
12+
mod profile_status;
1113
mod profiles;
1214
mod string_storage;
1315

16+
pub use profile_error::*;
17+
pub use profile_status::*;
18+
1419
#[cfg(all(feature = "symbolizer", not(target_os = "windows")))]
1520
pub use symbolizer_ffi::*;
1621

0 commit comments

Comments
 (0)