Mono.Debugger.Soft.Connection.VM_GetThreads C# (CSharp) Method

VM_GetThreads() public method

public VM_GetThreads ( ) : long[]
return long[]
		public long[] VM_GetThreads () {
			var res = SendReceive (CommandSet.VM, (int)CmdVM.ALL_THREADS, null);
			int len = res.ReadInt ();
			long[] arr = new long [len];
			for (int i = 0; i < len; ++i)
				arr [i] = res.ReadId ();
			return arr;
		}
Connection