Skip to content

Commit

Permalink
bpf-loader: make syscalls pub (#26918)
Browse files Browse the repository at this point in the history
  • Loading branch information
riptl authored Aug 6, 2022
1 parent 4608155 commit 35f04db
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions programs/bpf_loader/src/syscalls/mod.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
pub use self::{
cpi::{SyscallInvokeSignedC, SyscallInvokeSignedRust},
logging::{
SyscallLog, SyscallLogBpfComputeUnits, SyscallLogData, SyscallLogPubkey, SyscallLogU64,
},
mem_ops::{SyscallMemcmp, SyscallMemcpy, SyscallMemmove, SyscallMemset},
sysvar::{
SyscallGetClockSysvar, SyscallGetEpochScheduleSysvar, SyscallGetFeesSysvar,
SyscallGetRentSysvar,
},
};
#[allow(deprecated)]
use {
self::{
cpi::{SyscallInvokeSignedC, SyscallInvokeSignedRust},
logging::{
SyscallLog, SyscallLogBpfComputeUnits, SyscallLogData, SyscallLogPubkey, SyscallLogU64,
},
mem_ops::{SyscallMemcmp, SyscallMemcpy, SyscallMemmove, SyscallMemset},
sysvar::{
SyscallGetClockSysvar, SyscallGetEpochScheduleSysvar, SyscallGetFeesSysvar,
SyscallGetRentSysvar,
},
},
crate::{allocator_bump::BpfAllocator, BpfError},
solana_program_runtime::{
ic_logger_msg, ic_msg,
Expand Down

0 comments on commit 35f04db

Please sign in to comment.