gamemodelist.1.in 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .\" Manpage for gamemodelist.
  2. .\" Contact linux-contact@feralinteractive.com to correct errors or typos.
  3. .TH gamemodelist 1 "4 May 2020" "@GAMEMODE_VERSION@" "gamemodelist man page"
  4. .SH NAME
  5. gamemodelist \- search for processes running with gamemode
  6. .SH SYNOPSIS
  7. \fBgamemodelist\fR
  8. .SH DESCRIPTION
  9. \fBgamemodelist\fR will search the runtime of all processes running which started \fBGameMode\fR via \fBlibgamemodeauto.so\fR and print them with
  10. .BR ps (1)
  11. command output. This helper script makes it easy to find which processes are utilizing \fBGameMode\fR via \fBlibgamemodeauto.so\fR when troubleshooting potential game issues.
  12. .SH USAGE
  13. \fBlibgamemodeauto.so.0\fR will be found in the shared object maps of running processes utilizing \fBGameMode\fR. Run the following command to print processes loaded with \fBlibgamemodeauto.so.0\fR. \fBGameMode\fR can be started other ways but this script will only detect processes utilizing \fBGameMode\fR via \fBlibgamemodeauto.so\fR.
  14. .RS 4
  15. gamemodelist
  16. .RE
  17. .SH OUTPUT
  18. The output is a process table from
  19. .BR ps (1)
  20. command.
  21. .RS 4
  22. PID PPID USER NI PSR COMMAND
  23. .RE
  24. Where each of these fields are defined in
  25. .BR ps (1)
  26. manual. For your convenience here's a definition for each field.
  27. .RS 4
  28. .TS
  29. l lw(3i).
  30. \fBCOLUMN DESCRIPTION\fR
  31. PID Process ID
  32. PPID Parent process ID
  33. USER User name owning the process.
  34. NI T{
  35. Nice value. This ranges from 19 (nicest) to \-20 (not nice to others),
  36. See
  37. .IR nice (1).
  38. T}
  39. PSR T{
  40. Processor that process is currently assigned to. Useful when setting process affinity using
  41. .IR taskset (1)
  42. utility.
  43. T}
  44. COMMAND Command name (only the executable name).
  45. .TE
  46. .RE
  47. .SH SEE ALSO
  48. .BR gamemodrun (1),
  49. .BR nice (1),
  50. .BR ps (1),
  51. .BR taskset (1).
  52. .SH ABOUT
  53. GameMode source can be found at \fIhttps://github.com/FeralInteractive/gamemode.git\fR
  54. .SH AUTHOR
  55. .BR gamemodelist
  56. was authored by Sam Gleske (https://github.com/samrocketman/)
  57. .BR GameMode
  58. was authored by Feral Interactive (linux-contact@feralinteractive.com)