Android.OS.Process: Method Members

The methods of Android.OS.Process are listed below. For a list of all members, see the Process Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

static
GetGidForName(string) : int
Returns the GID assigned to a particular user name, or -1 if there is none.
static
GetThreadPriority(int) : ThreadPriority
Return the current priority of a thread, based on Linux priorities.
static
GetUidForName(string) : int
Returns the UID assigned to a particular user name, or -1 if there is none.
static
KillProcess(int)
Kill the process with the given PID.
static
MyPid() : int
Returns the identifier of this process, which can be used with Process.KillProcess(int) and Process.SendSignal(int, Android.OS.Signal).
static
MyTid() : int
Returns the identifier of the calling thread, which be used with Process.SetThreadPriority(int, Android.OS.ThreadPriority).
static
MyUid() : int
Returns the identifier of this process's uid.
static
MyUserHandle() : UserHandle
Returns this process's user handle.
static
SendSignal(int, Signal)
Send a signal to the given process.
static
SetThreadPriority(ThreadPriority)
Set the priority of the calling thread, based on Linux priorities.
static
SetThreadPriority(int, ThreadPriority)
Set the priority of a thread, based on Linux priorities.
static
SupportsProcesses() : bool
Determine whether the current environment supports multiple processes.