Skip to content

Commit

Permalink
Merge pull request #444 from nanvix/enhancement-build-gate
Browse files Browse the repository at this point in the history
[build] Gate `kcall` Behind Target OS
  • Loading branch information
ppenna authored Oct 1, 2024
2 parents 8f44da8 + bb6dd49 commit 101c62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sys/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub mod event;
pub mod ipc;

/// Kernel calls.
#[cfg(feature = "kcall")]
#[cfg(all(target_os = "none", feature = "kcall"))]
pub mod kcall;

/// Helper macros.
Expand Down

0 comments on commit 101c62d

Please sign in to comment.