Skip to content

Commit

Permalink
feat: unfinished/resumed syscalls
Browse files Browse the repository at this point in the history
  • Loading branch information
desbma-s1n committed May 29, 2024
1 parent 9299090 commit 09d4735
Show file tree
Hide file tree
Showing 5 changed files with 282 additions and 182 deletions.
7 changes: 4 additions & 3 deletions src/strace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ pub enum Expression {
Buffer(BufferExpression),
Integer(IntegerExpression),
Struct(HashMap<String, Expression>),
Array(Vec<Expression>),
Set {
// The strace syntax can be ambiguous between array and set (ie sigset_t in sigprocmask),
// so store both in this, and let the summary interpret
Collection {
complement: bool,
values: Vec<IntegerExpressionValue>,
values: Vec<Expression>,
},
Macro {
name: String,
Expand Down
Loading

0 comments on commit 09d4735

Please sign in to comment.