简体   繁体   中英

What is the meaning of pid, uid and gids in Logcat Message?

I get the following message in Android Logcat I/ActivityManager(59): Start proc com.abc.xyz:mnp for service com.abc.xyz/.contact.SomeService: pid=31198 uid=10036 gids={3003, 1015} .

What are the meanings of pid , uid and gids and numbers in front of them here?

These are standard Linux terms:

  • pid = process ID
  • uid = user ID of the application that owns that process
  • gid = group IDs of the application that owns that process

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM