Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
open-source-case-studies
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
13
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
open-source-case-studies
Merge requests
!18
Improve miniz
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Improve miniz
improve-miniz
into
master
Overview
0
Commits
4
Pipelines
2
Changes
53
Merged
Andre Maroneze
requested to merge
improve-miniz
into
master
3 years ago
Overview
0
Commits
4
Pipelines
2
Changes
53
Expand
0
0
Merge request reports
Compare
master
version 1
cbe32e0b
3 years ago
master (base)
and
latest version
latest version
96587864
4 commits,
3 years ago
version 1
cbe32e0b
4 commits,
3 years ago
53 files
+
9233
−
951
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
53
Search (e.g. *.vue) (Ctrl+P)
miniz/.frama-c/.frama-c/frama_c_journal.ml
0 → 100644
+
33
−
0
Options
(* Frama-C journal generated at 17:04 the 21/05/2021 *)
exception
Unreachable
exception
Exception
of
string
[
@@@
warning
"-26"
]
(* Run the user commands *)
let
run
()
=
()
(* Main *)
let
main
()
=
Journal
.
keep_file
".frama-c/frama_c_journal.ml"
;
try
run
()
with
|
Unreachable
->
Kernel
.
fatal
"Journal reaches an assumed dead code"
|
Exception
s
->
Kernel
.
log
"Journal re-raised the exception %S"
s
|
exn
->
Kernel
.
fatal
"Journal raised an unexpected exception: %s"
(
Printexc
.
to_string
exn
)
(* Registering *)
let
main
:
unit
->
unit
=
Dynamic
.
register
~
plugin
:
"Frama_c_journal.ml"
"main"
(
Datatype
.
func
Datatype
.
unit
Datatype
.
unit
)
~
journalize
:
false
main
(* Hooking *)
let
()
=
Cmdline
.
run_after_loading_stage
main
;
Cmdline
.
is_going_to_load
()
Loading