Skip to content
Snippets Groups Projects
Commit a2fa8aec authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[aorai] fix comments

parent 4062c106
No related branches found
No related tags found
No related merge requests found
...@@ -222,16 +222,18 @@ val getNumberOfStates : unit -> int ...@@ -222,16 +222,18 @@ val getNumberOfStates : unit -> int
(** Return the list of all function name observed in the C file, except ignored functions. *) (** Return the list of all function name observed in the C file, except ignored functions. *)
val getObservablesFunctions : unit -> Cil_types.kernel_function list val getObservablesFunctions : unit -> Cil_types.kernel_function list
(** Return the list of names of observable but ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *) (** Return the list of names of observable but ignored functions.
A function is ignored if it is used in C file and if its declaration
is unavailable. *)
val getIgnoredFunctions : unit -> Cil_types.kernel_function list val getIgnoredFunctions : unit -> Cil_types.kernel_function list
(** Return the list of names of all ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *) (** Add a function to the list of ignored functions. *)
val addIgnoredFunction : Cil_types.kernel_function -> unit val addIgnoredFunction : Cil_types.kernel_function -> unit
(** Return true if and only if the given string fname denotes an ignored function. *) (** Return true if and only if the given string fname denotes an ignored function. *)
val isIgnoredFunction : Cil_types.kernel_function -> bool val isIgnoredFunction : Cil_types.kernel_function -> bool
(** Return true if and onfly if the given function can be observed *) (** Return true if and only if the given function can be observed *)
val isObservableFunction : Cil_types.kernel_function -> bool val isObservableFunction : Cil_types.kernel_function -> bool
(** returns the state of given index. (** returns the state of given index.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment