From 90d17ab8980674c6a59f47a062adccb37f99b88a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 16 Apr 2020 17:38:36 +0200 Subject: prog: introduce call attributes Add common infrastructure for syscall attributes. Add few attributes we want, but they are not implemented for now (don't affect behavior, this will follow). --- executor/defs.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'executor/defs.h') diff --git a/executor/defs.h b/executor/defs.h index c8588b73a..db9c97b4b 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -1,5 +1,11 @@ // AUTOGENERATED FILE +struct call_attrs_t { + uint64_t disabled; + uint64_t timeout; + uint64_t prog_timeout; +}; + #if GOOS_akaros #define GOOS "akaros" -- cgit mrf-deployment