1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use super::*;

impl<'a, 'c> JournalSyscallPlayer<'a, 'c> {
    pub(super) fn clear_ethereal(
        &mut self,
        mut differ_ethereal: Option<&mut Vec<JournalEntry<'a>>>,
    ) {
        tracing::trace!("Replay journal - ClearEthereal");
        self.spawn_threads.clear();

        if let Some(x) = self.stdout.as_mut() {
            x.clear();
        }
        self.stdout_fds.clear();
        self.stdout_fds.insert(1 as WasiFd);

        if let Some(x) = self.stderr.as_mut() {
            x.clear();
        }
        self.stderr_fds.clear();
        self.stderr_fds.insert(2 as WasiFd);

        differ_ethereal.iter_mut().for_each(|e| e.clear());
        self.staged_differ_memory.clear();
    }
}