-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'issue_1140' into issue-1374-3
- Loading branch information
Showing
257 changed files
with
7,942 additions
and
975 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,9 @@ Stefan Marcik <[email protected]> <stefan@stefan-ubuntu.(none)> | |
Ralf Vogler <[email protected]> | ||
<[email protected]> <[email protected]> | ||
<[email protected]> <[email protected]> | ||
Michael Petter <[email protected]> | ||
<[email protected]> <[email protected]> | ||
<[email protected]> <[email protected]> | ||
|
||
Ivana Zuzic <[email protected]> <[email protected]> | ||
Kerem Çakırer <[email protected]> <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Assumptions | ||
|
||
Goblint makes the following (implicit) assumptions about the systems and programs it analyzes. | ||
|
||
_NB! This list is likely incomplete._ | ||
|
||
1. `PTHREAD_MUTEX_DEFAULT` is a non-recursive mutex type. | ||
|
||
Although the [POSIX Programmer's Manual](https://linux.die.net/man/3/pthread_mutexattr_settype) states that | ||
|
||
> An implementation may map this mutex to one of the other mutex types. | ||
including `PTHREAD_MUTEX_RECURSIVE`, on Linux and OSX it seems to be mapped to `PTHREAD_MUTEX_NORMAL`. | ||
Goblint assumes this to be the case. | ||
|
||
This affects the `maylocks` analysis. | ||
|
||
See [PR #1414](https://github.com/goblint/analyzer/pull/1414). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule gobview
updated
15 files
+23 −3 | src/Main.re | |
+5 −3 | src/state/gvDisplay.ml | |
+14 −0 | src/state/gvDisplayReducer.ml | |
+1 −1 | src/state/gvGoblint.ml | |
+1 −1 | src/state/gvInspect.ml | |
+4 −2 | src/state/gvInspectReducer.ml | |
+1 −1 | src/state/reducer.ml | |
+2 −2 | src/state/state.ml | |
+31 −4 | src/ui/content/gvBreadcrumb.re | |
+22 −13 | src/ui/content/gvFileView.re | |
+1 −1 | src/ui/content/gvFuncView.re | |
+3 −2 | src/ui/panel/WarningView.re | |
+2 −2 | src/ui/sidebar/SidebarLeft.re | |
+8 −2 | src/ui/sidebar/fileList/fileEntry.re | |
+5 −12 | src/ui/sidebar/fileList/gvFileList.re |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ | |
"ConfigVersion", | ||
"ConfigProfile", | ||
"ConfigOcaml", | ||
"ConfigDatetime", | ||
]) | ||
|
||
src_modules = set() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.