| 429 | } |
| 430 | |
| 431 | type SyscallConfig struct { |
| 432 | logger *log.Logger |
| 433 | debug bool |
| 434 | Enable bool |
| 435 | TraceMode uint32 |
| 436 | PointArgs []*SyscallPoint |
| 437 | SysWhitelist []uint32 |
| 438 | SysBlacklist []uint32 |
| 439 | DumpHex bool |
| 440 | Color bool |
| 441 | } |
| 442 | |
| 443 | func (this *SyscallConfig) SetDebug(debug bool) { |
| 444 | this.debug = debug |
nothing calls this directly
no outgoing calls
no test coverage detected