-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
64 lines (47 loc) · 2.05 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Jlint changelog:
Version 3.1.4.4
-remove cppcheck warnings
Version 3.1.4.3
* mark some TODO issues
* update codeblocks configurations
* add new option antic -sourcedir for triggering directories
Version 3.1.4.2
* remove warnings
Version 3.1.4.1:
* fork codeblocks
* add clang configuration
* use cppcheck
Version 3.1: Minor patch in types.hh to fix compilation problems.
Version 3.0: See jlint_3.0.tex.
Version 2.3: (Trivial) port to LinuxPPC and Mac OS X.
Version 2.2: Applied Eric A. Raymond's compiler compatibility
patch. Removed -DHASH_TABLE in the Makefile due to some problems (it
can still be enabled if needed). OpenBSD port (thanks to Kevin Lo for
testing it).
Version 2.1: FreeBSD Port (thanks to Ernst de Haan for giving me access
to a FreeBSD box), Visual C++ port (by Maarten Breddels).
Version 2.0: As a part of Cyrille Artho's master thesis, 2 1/2 weeks
were spent on cleaning up and extending Jlint as follows:
- Jlint has been restructured into several files. All larger
classes now are in their own file, while some smaller classes
have been grouped by their meaning. This makes Jlint easier
to maintain.
- Synchronized blocks are now fully supported. The value of
references is tracked during their "life" on the stack and
as static or instance variables. This allowed the following
improvements:
1. wait/notify[All] calls are now truly checked: The
current set of locks is analyzed. Depending on whether a
thread holds the lock it is wait()ing on or whether it
holds other locks, too, different (much more precise)
warnings are issued.
2. Inter-method deadlocks from synchronized blocks
are fully checked. The call graph analysis has been
extended with "pseudo method calls" whenever a lock
is being obtained. This extends the old analysis for
synchronized methods.
3. Assignments to locking variables (usually hazardous)
are also checked. If they are not within a constructor
or guarded by a lock, a warning is issued.
Version 1.11: Last version from Konstantin Knizhnik, using one source
and one header file.