Home
last modified time | relevance | path

Searched refs:processes (Results 1 – 25 of 482) sorted by relevance

12345678910>>...20

/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dperf-security.rst11 monitored processes. The data leakage is possible both in scenarios of
52 To perform security checks, the Linux implementation splits processes
53 into two categories [6]_ : a) privileged processes (whose effective user
55 processes (whose effective UID is nonzero). Privileged processes bypass
57 monitoring is fully available to privileged processes without access,
60 Unprivileged processes are subject to a full security permission check
66 independently enabled and disabled on per-thread basis for processes and
69 Unprivileged processes with enabled CAP_PERFMON capability are treated
70 as privileged processes with respect to perf_events performance
79 processes but CAP_SYS_ADMIN usage for secure monitoring and observability
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/php/php/
H A Dphp-fpm.conf66 ; Time limit for child processes to wait for a reaction on signals from master.
72 ; The maximum number of processes FPM will fork. This has been design to control
73 ; the global number of processes when using dynamic PM within a lot of pools.
114 ; Multiple pools of child processes may be started with different listening
137 ; Unix user/group of processes
219 ; The number of child processes created on startup.
224 ; The desired minimum number of idle server processes.
229 ; The desired maximum number of idle server processes.
257 ; idle processes - the number of idle processes;
258 ; active processes - the number of active processes;
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/
H A Dtestsdk.py95 processes = d.getVar("TESTIMAGE_NUMBER_THREADS") or d.getVar("BB_NUMBER_THREADS")
96 if processes:
101 processes = None
126 if processes:
127 result = tc.runTests(processes=int(processes))
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/collectd/collectd/
H A D0001-Remove-including-sys-sysctl.h-on-glibc-based-systems.patch20 src/processes.c | 2 +-
24 diff --git a/src/processes.c b/src/processes.c
26 --- a/src/processes.c
27 +++ b/src/processes.c
/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/
H A DREADME.pybootchart8 formats. Bootchart collects information about the processes, their
22 A typical boot sequence consists of several hundred processes. Since
24 way, tree pruning is utilized. Idle background processes and
25 short-lived processes are removed. Similar processes running in
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/psmisc/
H A Dpsmisc.inc1 SUMMARY = "Utilities for managing processes on your system"
3 DESCRIPTION = "The psmisc package contains utilities for managing processes on your \
5 structure of all of the running processes on your system. The killall \
7 processes identified by name. The fuser command identifies the PIDs \
8 of processes that are using specified files or filesystems."
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/benchmarks/
H A Dcontext_switch.c279 static int processes; variable
285 if (!processes) in mutex_lock()
306 if (!processes) in mutex_unlock()
323 if (!processes) { in futex_setup()
390 { "process", no_argument, &processes, 1 },
463 if (processes) in main()
475 printf("Using %s with ", processes ? "processes" : "threads"); in main()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/
H A Dcontext.py26 def __init__(self, suite, processes, setupfunc, removefunc): argument
28 self.processes = processes
123 def prepareSuite(self, suites, processes): argument
124 if processes:
127 return ConcurrentTestSuite(suites, processes, self.setup_builddir, self.removebuilddir)
129 … return NonConcurrentTestSuite(suites, processes, self.setup_builddir, self.removebuilddir)
131 def runTests(self, processes=None, machine=None, skips=[]): argument
138 return super(OESelftestTestContext, self).runTests(processes, skips)
262 self.tc_kwargs['run']['processes'] = args.processes
/OK3568_Linux_fs/kernel/Documentation/admin-guide/cgroup-v1/
H A Dpids.rst21 number of processes currently in the cgroup is given by pids.current.
25 be smaller than pids.current, or attaching enough processes to the cgroup such
49 Then we create a hierarchy, set limits and attach processes to it::
63 # ( /bin/echo "Here's some processes for you." | cat )
78 # ( /bin/echo "Here's some processes for you." | cat )
83 processes from being forked at all (note that the shell itself counts towards
H A Drdma.rst20 set of processes can use. These processes are grouped using RDMA controller.
22 RDMA controller defines two resources which can be limited for processes of a
34 of processes can be limited. Through this controller different rdma
52 of the child processes which shares the address space, rdma resources are
57 deleted after processes migrated. This allow progress migration as well with
/OK3568_Linux_fs/kernel/tools/power/cpupower/
H A DToDo15 - Fork as many processes as there are CPUs in case the
18 -> Execute start measures via the forked processes on
21 -> Execute stop measures via the forked processes on
/OK3568_Linux_fs/kernel/Documentation/power/
H A Dfreezing-of-tasks.rst10 The freezing of tasks is a mechanism by which user space processes and some
19 PF_NOFREEZE unset (all user space processes and some kernel threads) are
29 fake signal to all user space processes, and wakes up all the kernel threads.
36 kernel/freezer.c & include/linux/freezer.h). User space processes are generally
43 For user space processes try_to_freeze() is called automatically from the
118 processes, but if any of the kernel threads may cause something like this
130 3. The third reason is to prevent user space processes and some kernel threads
160 4. Another reason for freezing tasks is to prevent user space processes from
162 space processes should not notice that such a system-wide operation has
183 space processes:
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/LSM/
H A DYama.rst16 running state of any of their processes. For example, if one application
18 attach to other running processes (e.g. Firefox, SSH sessions, GPG agent,
43 Firefox's crash handlers, and by Wine for allowing only Wine processes
68 only processes with ``CAP_SYS_PTRACE`` may use ptrace, either with
72 no processes may use ptrace with ``PTRACE_ATTACH`` nor via
H A DSafeSetID.rst13 In absence of file capabilities, processes spawned on a Linux system that need
22 While it is possible to implement a tree of processes by giving full
24 tree of processes under non-root user(s) in the first place. Specifically,
44 processes as different uids, but its undesirable to give the daemon a
60 fork(), parent processes specifying custom environment variables or command line
61 args for spawned child processes, or inheritance of file handles across a
114 setgroups() calls for processes with CAP_SETGID restrictions. Until we add
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/sysvinit/sysvinit/
H A Dpidof-add-m-option.patch6 When used with -o, will also omit any processes that have the same
36 Tells \fIpidof\fP to omit processes with that process id. The special
40 +When used with -o, will also omit any processes that have the same
53 /* List of processes. */
57 /* List of processes to omit. */
/OK3568_Linux_fs/buildroot/package/polkit/
H A DConfig.in15 processes to speak to privileged processes.
/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/tests/
H A Dparser_test.py44 processes = samples.process_map
45 sorted_processes = [processes[k] for k in sorted(processes.keys())]
/OK3568_Linux_fs/u-boot/tools/
H A Dgenboardscfg.py243 processes = []
252 processes.append(p)
260 while any([p.is_alive() for p in processes]):
267 for p in processes:
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/
H A Dcontext.py78 def prepareSuite(self, suites, processes): argument
81 def runTests(self, processes=None, skips=[]): argument
89 if not processes:
91 result = self.runner.run(self.prepareSuite(self.suites, processes))
/OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/
H A Dprocess_tree.py224 def merge_exploders(self, process_subtree, processes): argument
231 if processes in processes and len(p.child_list) > 0:
239 num_removed += self.merge_exploders(p.child_list, processes)
H A Ddraw.py321 processes = 0
322 for proc in trace.processes:
324 trace.processes[proc][1] - trace.processes[proc][0] < options.app_options.mintime:
327 if trace.processes[proc][1] > end:
328 end = trace.processes[proc][1]
329 processes += 1
336 h = proc_h * processes + header_h + 2 * off_y
526 trace.processes[process][1] - start < options.app_options.mintime:
535 w = ((trace.processes[process][1] - start) * sec_w)
/OK3568_Linux_fs/buildroot/package/atop/
H A DConfig.in11 that is capable of reporting the activity of all processes
12 (even if processes have finished during the interval), daily
/OK3568_Linux_fs/kernel/tools/power/pm-graph/config/
H A Dsuspend-x2-proc.cfg2 # Proc S3 (Suspend to Mem) x2 test - includes user processes
45 # Display user processes
46 # graph user processes and cpu usage in the timeline (default: false)
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/perl/files/
H A Derrno_ver.diff5 long-running processes.
10 processes embedding perl when upgrading to a newer version,
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dqemutinyrunner.py146 processes = ps.decode("utf-8").split('\n')
147 nfields = len(processes[0].split()) - 1
150 for row in processes[1:]:

12345678910>>...20