Skip to content

Commit 50c0221

Browse files
committed
Add some comments
1 parent 0583081 commit 50c0221

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/cargo/core/compiler/job_queue.rs

+14
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,28 @@ impl std::fmt::Display for JobId {
162162
}
163163
}
164164

165+
/// A `JobState` is constructed by `JobQueue::run` and passed to `Job::run`. It includes everything
166+
/// necessary to communicate between the main thread and the execution of the job.
167+
///
168+
/// The job may execute on either a dedicated thread or the main thread. If the job executes on the
169+
/// main thread, the `output` field must be set to prevent a deadlock.
165170
pub struct JobState<'a> {
166171
/// Channel back to the main thread to coordinate messages and such.
172+
///
173+
/// When the `output` field is `Some`, care must be taken to avoid calling `push_bounded` on
174+
/// the message queue to prevent a deadlock.
167175
messages: Arc<Queue<Message>>,
168176

169177
/// Normally output is sent to the job queue with backpressure. When the job is fresh
170178
/// however we need to immediately display the output to prevent a deadlock as the
171179
/// output messages are processed on the same thread as they are sent from. `output`
172180
/// defines where to output in this case.
181+
///
182+
/// Currently the `Shell` inside `Config` is wrapped in a `RefCell` and thus can't be passed
183+
/// between threads. This means that it isn't possible for multiple output messages to be
184+
/// interleaved. In the future, it may be wrapped in a `Mutex` instead. In this case
185+
/// interleaving is still prevented as the lock would be held for the whole printing of an
186+
/// output message.
173187
output: Option<&'a Config>,
174188

175189
/// The job id that this state is associated with, used when sending

0 commit comments

Comments
 (0)