Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
4b07025
#231 Defined private, public variable. Clean unuse code
minh1302 Aug 19, 2017
8c5b250
#231 Added test + Built Constructor, Getter + Setter of name, priorit…
minh1302 Aug 19, 2017
677eb3e
#231 Edited constructor. Added test + Built Init(), setName(), getNam…
minh1302 Aug 19, 2017
a8032c8
Merge branch 'development' into java.lang.Thread
Aug 28, 2017
0071038
#231 Implement Semaphore, Thread::join()
Aug 28, 2017
5bfec5b
#231 Fix test case
Aug 30, 2017
57fcc87
#231 Test std::thread
Aug 30, 2017
88d4bb7
#231 Remove semaphore
Aug 30, 2017
dde64dd
Resolve conflict
dquangit Sep 17, 2017
b56cf71
#231 Add new Semaphore
Sep 17, 2017
358a395
#231 Try decreasing sleep time
Sep 17, 2017
1f584a9
#231 Comment join testcase
Sep 17, 2017
c51c8d4
#231 Uncomment testcase, comment destructor
Sep 17, 2017
ad7f32a
#231 Comment testcase & destructor
Sep 17, 2017
134302a
#231 Comment testcase
Sep 17, 2017
44d93e4
#231 Try fixing crash
Sep 18, 2017
dc38f78
#231 Try fixing crash
Sep 18, 2017
60e84c1
#231 Add class field init
Sep 18, 2017
53f89ce
#231 Uncomment thread::join() testcase
Sep 18, 2017
087cf6f
Merge branch 'development' into java.lang.Thread
Sep 18, 2017
c5fb085
Merge branch 'development' into java.lang.Thread
loint Sep 19, 2017
3063d6b
#231 Add Thread::sleep()
Sep 25, 2017
7e2998b
#231 Implement Thread::getId(), Thread::currentThread(), InterruptedE…
Sep 26, 2017
536f0ec
#231 Add print long long to String:format(), remove Thread::sleep() t…
Sep 27, 2017
19d8ae4
#231 Debug getting thread id in appveyor env
Sep 27, 2017
eda2316
#231 Change method get thread id
Sep 27, 2017
eacd6d6
#231 Fix conflict
minh1302 Oct 10, 2017
10e2604
#231 Fix getting thread id
Oct 10, 2017
e6d5b2f
#231 Fix getting thread id
Oct 10, 2017
51a3b9e
#231 Fix getting thread id
Oct 10, 2017
4ca1d95
#231 Remove unused ostream
Oct 12, 2017
dfdefe2
#231 Fixed conflict
minh1302 Oct 14, 2017
be8932b
#231 Try installing clang++
Oct 15, 2017
3dd94e0
Try installing clang++
Oct 15, 2017
9a6db9f
Try installing clang++
Oct 15, 2017
a7cf885
Try installing clang++
Oct 15, 2017
715385a
Test brew
Oct 15, 2017
bf111d3
Test brew
Oct 15, 2017
a675a45
Test brew
Oct 15, 2017
c4c4596
#231 Try installing clang++
Oct 15, 2017
7e6926f
#231 Try installing clang++
Oct 15, 2017
55af676
#231 Try installing clang++
Oct 15, 2017
d627740
#231 Try installing clang++
Oct 15, 2017
c1bae3e
#231 Try installing clang++
Oct 15, 2017
6637923
#231 Adding lambda constructor.
Mar 24, 2018
cee3245
#231 Fix travis config.
Mar 25, 2018
e52716b
#231 Remove unused files.
sonda2208 Mar 25, 2018
1cd6bc5
#231 Implement Thread::detach().
sonda2208 Mar 25, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vscode/.cmaketools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"variant": null,
"activeEnvironments": [],
"codeModel": null
}
2 changes: 1 addition & 1 deletion library/Java/Lang/Runnable/Runnable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace Java {
namespace Lang {
class Runnable {
public:
virtual void run() const = 0;
virtual void run() = 0;
};
}
}
Expand Down
Loading