Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TeeTime-Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nelson Tavares de Sousa
TeeTime-Framework
Commits
42443616
Commit
42443616
authored
9 years ago
by
Nelson Tavares de Sousa
Browse files
Options
Downloads
Patches
Plain Diff
first version of thread naming (for further analysis purposes)
parent
2df17f7f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/teetime/framework/Analysis.java
+3
-0
3 additions, 0 deletions
src/main/java/teetime/framework/Analysis.java
src/site/markdown/wiki
+1
-1
1 addition, 1 deletion
src/site/markdown/wiki
with
4 additions
and
1 deletion
src/main/java/teetime/framework/Analysis.java
+
3
−
0
View file @
42443616
...
...
@@ -103,18 +103,21 @@ public final class Analysis implements UncaughtExceptionHandler {
final
Thread
thread
=
new
Thread
(
new
RunnableConsumerStage
(
stage
));
stage
.
setOwningThread
(
thread
);
this
.
consumerThreads
.
add
(
thread
);
thread
.
setName
(
stage
.
getId
());
break
;
}
case
BY_SELF_DECISION:
{
final
Thread
thread
=
new
Thread
(
new
RunnableProducerStage
(
stage
));
stage
.
setOwningThread
(
thread
);
this
.
finiteProducerThreads
.
add
(
thread
);
thread
.
setName
(
stage
.
getId
());
break
;
}
case
BY_INTERRUPT:
{
final
Thread
thread
=
new
Thread
(
new
RunnableProducerStage
(
stage
));
stage
.
setOwningThread
(
thread
);
this
.
infiniteProducerThreads
.
add
(
thread
);
thread
.
setName
(
stage
.
getId
());
break
;
}
default
:
...
...
This diff is collapsed.
Click to expand it.
wiki
@
63ccbbc8
Subproject commit
0e4474577e1f49bc96e734c286b2d9e0363895e8
Subproject commit
63ccbbc87bd2c0e6599ca91502149dba3cfb99de
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment