62 references to Sys
System.Diagnostics.Process (62)
src\libraries\Common\src\Interop\Linux\cgroups\Interop.cgroups.cs (2)
215int result = Interop.Sys.GetFormatInfoForMountPoint(SysFsCgroupFileSystemPath, formatBuffer, MountPointFormatBufferSizeInBytes, &numericFormat); 218if (numericFormat == (int)Interop.Sys.UnixFileSystemTypes.cgroup2fs)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (3)
123_error = Interop.Sys.ConvertErrorPlatformToPal(errno); 140get { return _rawErrno == -1 ? (_rawErrno = Interop.Sys.ConvertErrorPalToPlatform(_error)) : _rawErrno; } 145return Interop.Sys.StrError(RawErrno);
src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetGroupList.cs (1)
26rv = Interop.Sys.GetGroupList(userName, primaryGroupId, pGroups, &ngroups);
src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (3)
36const int BufLen = Interop.Sys.Passwd.InitialBufferSize; 63Interop.Sys.Passwd passwd; 64int error = Interop.Sys.GetPwUidR(uid, out passwd, buf, bufLen);
src\libraries\Common\src\Interop\Unix\System.Native\Interop.IsMemberOfGroup.cs (2)
30rv = Interop.Sys.GetGroups(groups.Length, pGroups); 38else if (rv == -1 && Interop.Sys.GetLastError() == Interop.Error.EINVAL)
System\Diagnostics\Process.ConfigureTerminalForChildProcesses.Unix.cs (4)
24Interop.Sys.ConfigureTerminalForChildProcess(childUsesTerminal: true); 33Interop.Sys.ConfigureTerminalForChildProcess(childUsesTerminal: false); 40Interop.Sys.SetDelayedSigChildConsoleConfigurationHandler(&DelayedSigChildConsoleConfiguration); 53Interop.Sys.ConfigureTerminalForChildProcess(childUsesTerminal: false);
System\Diagnostics\Process.Linux.cs (4)
92bootTimeTicks = Interop.Sys.GetBootTimeTicks(); 187if (Interop.Sys.SchedGetAffinity(_processId, out set) != 0) 198if (Interop.Sys.SchedSetAffinity(_processId, ref value) != 0) 257Interop.Sys.ReadLink(Interop.procfs.GetExeFilePathForProcess(processId));
System\Diagnostics\Process.Unix.cs (32)
76int killResult = Interop.Sys.Kill(_processId, Interop.Sys.Signals.SIGKILL); 79Interop.Error error = Interop.Sys.GetLastError(); 112int stopResult = Interop.Sys.Kill(_processId, Interop.Sys.Signals.SIGSTOP); 115Interop.Error error = Interop.Sys.GetLastError(); 126int killResult = Interop.Sys.Kill(_processId, Interop.Sys.Signals.SIGKILL); 129Interop.Error error = Interop.Sys.GetLastError(); 266int errno = Interop.Sys.GetPriority(Interop.Sys.PriorityWhich.PRIO_PROCESS, _processId, out int pri); 298int result = Interop.Sys.SetPriority(Interop.Sys.PriorityWhich.PRIO_PROCESS, _processId, pri); 519int errno = Interop.Sys.ForkAndExecProcess( 669if (Interop.Sys.Access(resolvedFilename, Interop.Sys.AccessMode.X_OK) == 0) 753Interop.Sys.FileStatus fileinfo; 755if (Interop.Sys.Stat(fullPath, out fileinfo) < 0) 761if ((fileinfo.Mode & Interop.Sys.FileTypes.S_IFMT) == Interop.Sys.FileTypes.S_IFDIR) 780uint euid = Interop.Sys.GetEUid(); 802if (Interop.Sys.IsMemberOfGroup(fileinfo.Gid)) 824ticksPerSecond = Interop.Sys.SysConf(Interop.Sys.SysConfName._SC_CLK_TCK); 973uint[]? groups = Interop.Sys.GetGroupList(startInfo.UserName, groupId!.Value); 984Interop.Sys.Passwd? passwd; 988const int BufLen = Interop.Sys.Passwd.InitialBufferSize; 1020private static unsafe bool TryGetPasswd(string name, byte* buf, int bufLen, out Interop.Sys.Passwd? passwd) 1023Interop.Sys.Passwd tempPasswd; 1024int error = Interop.Sys.GetPwNamR(name, out tempPasswd, buf, bufLen); 1076if (!Interop.Sys.InitializeTerminalAndSignalHandling()) 1082Interop.Sys.RegisterForSigChld(&OnSigChild);
System\Diagnostics\ProcessManager.Unix.cs (4)
30int output = Interop.Sys.Kill(processId, Interop.Sys.Signals.None); 32return 0 == output || (-1 == output && Interop.Error.EPERM == Interop.Sys.GetLastError()); 69machineName != Interop.Sys.GetHostName();
System\Diagnostics\ProcessThread.Linux.cs (1)
24return Interop.Sys.GetThreadPriorityFromNiceValue((int)stat.nice);
System\Diagnostics\ProcessWaitState.Unix.cs (6)
354int killResult = Interop.Sys.Kill(_processId, Interop.Sys.Signals.None); // None means don't send a signal 364Interop.Error errno = Interop.Sys.GetLastError(); 571int waitResult = Interop.Sys.WaitPidExitedNoHang(_processId, out exitCode); 605pid = Interop.Sys.WaitIdAnyExitedNoHangNoWait(); 676pid = Interop.Sys.WaitPidExitedNoHang(-1, out exitCode);