Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
3892a84c
Commit
3892a84c
authored
15 years ago
by
David Parks
Browse files
Options
Downloads
Patches
Plain Diff
Tracking down stalls in llpumpio and agent updates.
parent
988d797b
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
indra/llmessage/llpumpio.cpp
+5
-2
5 additions, 2 deletions
indra/llmessage/llpumpio.cpp
indra/newview/llappviewer.cpp
+26
-7
26 additions, 7 deletions
indra/newview/llappviewer.cpp
with
31 additions
and
9 deletions
indra/llmessage/llpumpio.cpp
+
5
−
2
View file @
3892a84c
...
@@ -444,13 +444,13 @@ void LLPumpIO::pump()
...
@@ -444,13 +444,13 @@ void LLPumpIO::pump()
pump
(
DEFAULT_POLL_TIMEOUT
);
pump
(
DEFAULT_POLL_TIMEOUT
);
}
}
static
LLFastTimer
::
DeclareTimer
FTM_PUMP
(
"Pump"
);
static
LLFastTimer
::
DeclareTimer
FTM_PUMP
_IO
(
"Pump
IO
"
);
//timeout is in microseconds
//timeout is in microseconds
void
LLPumpIO
::
pump
(
const
S32
&
poll_timeout
)
void
LLPumpIO
::
pump
(
const
S32
&
poll_timeout
)
{
{
LLMemType
m1
(
LLMemType
::
MTYPE_IO_PUMP
);
LLMemType
m1
(
LLMemType
::
MTYPE_IO_PUMP
);
LLFastTimer
t1
(
FTM_PUMP
);
LLFastTimer
t1
(
FTM_PUMP
_IO
);
//llinfos << "LLPumpIO::pump()" << llendl;
//llinfos << "LLPumpIO::pump()" << llendl;
// Run any pending runners.
// Run any pending runners.
...
@@ -778,6 +778,8 @@ bool LLPumpIO::respond(
...
@@ -778,6 +778,8 @@ bool LLPumpIO::respond(
return
true
;
return
true
;
}
}
static
LLFastTimer
::
DeclareTimer
FTM_PUMP_CALLBACK_CHAIN
(
"Chain"
);
void
LLPumpIO
::
callback
()
void
LLPumpIO
::
callback
()
{
{
LLMemType
m1
(
LLMemType
::
MTYPE_IO_PUMP
);
LLMemType
m1
(
LLMemType
::
MTYPE_IO_PUMP
);
...
@@ -799,6 +801,7 @@ void LLPumpIO::callback()
...
@@ -799,6 +801,7 @@ void LLPumpIO::callback()
callbacks_t
::
iterator
end
=
mCallbacks
.
end
();
callbacks_t
::
iterator
end
=
mCallbacks
.
end
();
for
(;
it
!=
end
;
++
it
)
for
(;
it
!=
end
;
++
it
)
{
{
LLFastTimer
t
(
FTM_PUMP_CALLBACK_CHAIN
);
// it's always the first and last time for respone chains
// it's always the first and last time for respone chains
(
*
it
).
mHead
=
(
*
it
).
mChainLinks
.
begin
();
(
*
it
).
mHead
=
(
*
it
).
mChainLinks
.
begin
();
(
*
it
).
mInit
=
true
;
(
*
it
).
mInit
=
true
;
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llappviewer.cpp
+
26
−
7
View file @
3892a84c
...
@@ -922,6 +922,11 @@ static LLFastTimer::DeclareTimer FTM_LFS("LFS Thread");
...
@@ -922,6 +922,11 @@ static LLFastTimer::DeclareTimer FTM_LFS("LFS Thread");
static
LLFastTimer
::
DeclareTimer
FTM_PAUSE_THREADS
(
"Pause Threads"
);
static
LLFastTimer
::
DeclareTimer
FTM_PAUSE_THREADS
(
"Pause Threads"
);
static
LLFastTimer
::
DeclareTimer
FTM_IDLE
(
"Idle"
);
static
LLFastTimer
::
DeclareTimer
FTM_IDLE
(
"Idle"
);
static
LLFastTimer
::
DeclareTimer
FTM_PUMP
(
"Pump"
);
static
LLFastTimer
::
DeclareTimer
FTM_PUMP
(
"Pump"
);
static
LLFastTimer
::
DeclareTimer
FTM_PUMP_ARES
(
"Ares"
);
static
LLFastTimer
::
DeclareTimer
FTM_PUMP_SERVICE
(
"Service"
);
static
LLFastTimer
::
DeclareTimer
FTM_SERVICE_CALLBACK
(
"Callback"
);
static
LLFastTimer
::
DeclareTimer
FTM_AGENT_AUTOPILOT
(
"Autopilot"
);
static
LLFastTimer
::
DeclareTimer
FTM_AGENT_UPDATE
(
"Update"
);
bool
LLAppViewer
::
mainLoop
()
bool
LLAppViewer
::
mainLoop
()
{
{
...
@@ -1033,10 +1038,20 @@ bool LLAppViewer::mainLoop()
...
@@ -1033,10 +1038,20 @@ bool LLAppViewer::mainLoop()
LLMemType
mt_ip
(
LLMemType
::
MTYPE_IDLE_PUMP
);
LLMemType
mt_ip
(
LLMemType
::
MTYPE_IDLE_PUMP
);
pingMainloopTimeout
(
"Main:ServicePump"
);
pingMainloopTimeout
(
"Main:ServicePump"
);
LLFastTimer
t4
(
FTM_PUMP
);
LLFastTimer
t4
(
FTM_PUMP
);
gAres
->
process
();
{
// this pump is necessary to make the login screen show up
LLFastTimer
t
(
FTM_PUMP_ARES
);
gServicePump
->
pump
();
gAres
->
process
();
gServicePump
->
callback
();
}
{
LLFastTimer
t
(
FTM_PUMP_SERVICE
);
// this pump is necessary to make the login screen show up
gServicePump
->
pump
();
{
LLFastTimer
t
(
FTM_SERVICE_CALLBACK
);
gServicePump
->
callback
();
}
}
}
}
resumeMainloopTimeout
();
resumeMainloopTimeout
();
...
@@ -3495,9 +3510,12 @@ void LLAppViewer::idle()
...
@@ -3495,9 +3510,12 @@ void LLAppViewer::idle()
gAgent
.
moveYaw
(
-
1.
f
);
gAgent
.
moveYaw
(
-
1.
f
);
}
}
// Handle automatic walking towards points
{
gAgentPilot
.
updateTarget
();
LLFastTimer
t
(
FTM_AGENT_AUTOPILOT
);
gAgent
.
autoPilot
(
&
yaw
);
// Handle automatic walking towards points
gAgentPilot
.
updateTarget
();
gAgent
.
autoPilot
(
&
yaw
);
}
static
LLFrameTimer
agent_update_timer
;
static
LLFrameTimer
agent_update_timer
;
static
U32
last_control_flags
;
static
U32
last_control_flags
;
...
@@ -3508,6 +3526,7 @@ void LLAppViewer::idle()
...
@@ -3508,6 +3526,7 @@ void LLAppViewer::idle()
if
(
flags_changed
||
(
agent_update_time
>
(
1.0
f
/
(
F32
)
AGENT_UPDATES_PER_SECOND
)))
if
(
flags_changed
||
(
agent_update_time
>
(
1.0
f
/
(
F32
)
AGENT_UPDATES_PER_SECOND
)))
{
{
LLFastTimer
t
(
FTM_AGENT_UPDATE
);
// Send avatar and camera info
// Send avatar and camera info
last_control_flags
=
gAgent
.
getControlFlags
();
last_control_flags
=
gAgent
.
getControlFlags
();
send_agent_update
(
TRUE
);
send_agent_update
(
TRUE
);
...
...
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