Frama-C API - Mt_types
Kind of access to zones
type rw = | Read| Write of Frama_c_kernel.Locations.location| ReadPos of Eva__.Position.t| WritePos of Eva__.Position.t
module RW : sig ... endMultithread events
type event = | CreateThread of Eva__.Thread.t| StartThread of Eva__.Thread.t| SuspendThread of Eva__.Thread.t| CancelThread of Eva__.Thread.t| ThreadExit of Mt_memory.Types.value| MutexLock of Eva__.Mutex.t| MutexRelease of Eva__.Mutex.t| CreateQueue of Eva__.Mqueue.t * int option| SendMsg of Eva__.Mqueue.t * Mt_memory.Types.slice * int(*SendMsg(q, (msg, size))q: the queuemsg: content of the messagesize: size of the message
| ReceiveMsg of Eva__.Mqueue.t * Mt_memory.Types.pointer * int(*ReceiveMsg(q, ptr, size)q: the queueptr: loc to which the message must be writtensize: max size to read
| VarAccess of rw * Frama_c_kernel.Locations.Zone.t(*Access to some shared variables
*)| Dummy of string * Mt_memory.Types.value list
module Event : sig ... endMaps from statements to multithread events, together with the context in which they occur
module EventsSet : sig ... endtype events_set = EventsSet.tmodule Trace : sig ... endExecution trace, mapping execution stacks to sets of events occurring at this point
Live threads/taken mutexes at a given point of execution
module type Presence = sig ... endmodule ThreadPresence : Presence with type key = Eva__.Thread.t and module KeySet = Eva__Private.Thread.Setmodule MutexPresence : Presence with type key = Eva__.Mutex.t and module KeySet = Eva__Private.Mutex.Set