Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dhina17
platform_frameworks_base
Commits
c81dba07
Commit
c81dba07
authored
1 year ago
by
Prashanth Swaminathan
Committed by
Gerrit Code Review
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge "Set child process name with child zygote args" into main
parents
9df48db6
4651c3f8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/java/com/android/internal/os/Zygote.java
+5
-0
5 additions, 0 deletions
core/java/com/android/internal/os/Zygote.java
core/java/com/android/internal/os/ZygoteConnection.java
+0
-1
0 additions, 1 deletion
core/java/com/android/internal/os/ZygoteConnection.java
with
5 additions
and
1 deletion
core/java/com/android/internal/os/Zygote.java
+
5
−
0
View file @
c81dba07
...
...
@@ -868,6 +868,11 @@ public final class Zygote {
args
.
mPkgDataInfoList
,
args
.
mAllowlistedDataInfoList
,
args
.
mBindMountAppDataDirs
,
args
.
mBindMountAppStorageDirs
);
// While `specializeAppProcess` sets the thread name on the process's main thread, this
// is distinct from the app process name which appears in stack traces, as the latter is
// sourced from the argument buffer of the Process class. Set the app process name here.
Zygote
.
setAppProcessName
(
args
,
TAG
);
Trace
.
traceEnd
(
Trace
.
TRACE_TAG_ACTIVITY_MANAGER
);
return
ZygoteInit
.
zygoteInit
(
args
.
mTargetSdkVersion
,
...
...
This diff is collapsed.
Click to expand it.
core/java/com/android/internal/os/ZygoteConnection.java
+
0
−
1
View file @
c81dba07
...
...
@@ -296,7 +296,6 @@ class ZygoteConnection {
}
else
{
// child; result is a Runnable.
zygoteServer
.
setForkChild
();
Zygote
.
setAppProcessName
(
parsedArgs
,
TAG
);
// ??? Necessary?
return
result
;
}
}
...
...
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