Skip to content

Commit

Permalink
move ThreadAwareAccountLocks into scheduler module (solana-labs#32298)
Browse files Browse the repository at this point in the history
  • Loading branch information
apfitzge authored Jul 5, 2023
1 parent c809810 commit 06e5482
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
9 changes: 3 additions & 6 deletions core/src/banking_stage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ pub mod qos_service;
pub mod unprocessed_packet_batches;
pub mod unprocessed_transaction_storage;

mod consume_worker;
mod decision_maker;
mod forward_packet_batches_by_accounts;
mod forward_worker;
mod forwarder;
mod immutable_deserialized_packet;
mod latest_unprocessed_votes;
Expand All @@ -58,14 +60,9 @@ mod multi_iterator_scanner;
mod packet_deserializer;
mod packet_receiver;
mod read_write_account_set;

#[allow(dead_code)]
mod scheduler_messages;

mod consume_worker;
mod forward_worker;
#[allow(dead_code)]
mod thread_aware_account_locks;
mod transaction_scheduler;

// Fixed thread size seems to be fastest on GCP setup
pub const NUM_THREADS: u32 = 6;
Expand Down
2 changes: 2 additions & 0 deletions core/src/banking_stage/transaction_scheduler/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#[allow(dead_code)]
mod thread_aware_account_locks;

0 comments on commit 06e5482

Please sign in to comment.