Home
last modified time | relevance | path

Searched full:spawn (Results 1 – 25 of 198) sorted by relevance

12345678

/freebsd/lib/libc/gen/
H A Dposix_spawn.341 .Nd "spawn a process"
160 those open in the calling process as modified by the spawn file
165 flag of each remaining open file descriptor after the spawn file actions
167 The effective order of processing the spawn file actions are:
182 The file actions specified by the spawn file actions object are
183 performed in the order in which they were added to the spawn file
195 spawn attributes object type is defined in
201 flag is set in the spawn-flags attribute of the object referenced by
203 and the spawn-pgroup attribute of the same object is non-zero, then the
204 child's process group is as specified in the spawn-pgroup
[all …]
H A Dposix_spawnattr_init.341 .Nd "initialize and destroy spawn attributes object"
53 function initializes a spawn attributes object
57 Initializing an already initialized spawn attributes object may cause
62 function destroys a spawn attributes object.
69 A spawn attributes object is of type
74 spawn operation.
76 The resulting spawn attributes object (possibly modified by setting
81 After a spawn attributes object has been used to spawn a process by a
101 Insufficient memory exists to initialize the spawn attributes object.
H A Dposix_spawnattr_getpgroup.341 .Nd "get and set the spawn-pgroup attribute of a spawn attributes object"
53 function obtains the value of the spawn-pgroup attribute from the
59 function sets the spawn-pgroup attribute in an initialized
63 The spawn-pgroup attribute represents the process group to be joined by
64 the new process image in a spawn operation (if
66 is set in the spawn-flags attribute).
H A Dposix_spawnattr_getschedpolicy.341 .Nd "get and set the spawn-schedpolicy attribute of a spawn attributes object"
53 function obtains the value of the spawn-schedpolicy attribute from the
59 function sets the spawn-schedpolicy attribute in an initialized attributes
63 The spawn-schedpolicy attribute represents the scheduling policy to
64 be assigned to the new process image in a spawn operation (if
66 is set in the spawn-flags attribute).
H A Dposix_spawnattr_getsigdefault.341 .Nd "get and set the spawn-sigdefault attribute of a spawn attributes object"
53 function obtains the value of the spawn-sigdefault attribute from the
59 function sets the spawn-sigdefault attribute in an initialized attributes
63 The spawn-sigdefault attribute represents the set of signals to be forced to
66 is set in the spawn-flags attribute) by a spawn operation.
H A Dposix_spawnattr_getsigmask.341 .Nd "get and set the spawn-sigmask attribute of a spawn attributes object"
53 function obtains the value of the spawn-sigmask attribute from the
59 function sets the spawn-sigmask attribute in an initialized attributes
63 The spawn-sigmask attribute represents the signal mask in effect in the
64 new process image of a spawn operation (if
66 is set in the spawn-flags attribute).
H A Dposix_spawnattr_getschedparam.341 .Nd "get and set the spawn-schedparam attribute of a spawn attributes object"
53 function obtains the value of the spawn-schedparam attribute from the
59 function sets the spawn-schedparam attribute in an initialized attributes
63 The spawn-schedparam attribute represents the scheduling parameters to
64 be assigned to the new process image in a spawn operation (if
68 is set in the spawn-flags attribute).
H A Dposix_spawnattr_getflags.341 .Nd "get and set the spawn-flags attribute of a spawn attributes object"
53 function obtains the value of the spawn-flags attribute from the
59 function sets the spawn-flags attribute in an initialized
63 The spawn-flags attribute is used to indicate which process attributes
H A Dposix_spawn_file_actions_init.341 .Nd "initialize and destroy spawn file actions object"
59 Initializing an already initialized spawn file actions object may cause
67 A destroyed spawn file actions object can be reinitialized using
79 Insufficient memory exists to initialize the spawn file actions object.
H A Dposix_spawn_file_actions_addopen.345 .Nd "add open, dup2, close, closefrom, or chdir/fchdir actions to spawn file actions object"
85 These functions add an open, dup2 or close action to a spawn
88 A spawn file actions object is of type
99 A spawn file actions object, when passed to
224 Insufficient memory exists to add to the spawn file actions object.
/freebsd/tests/sys/kern/tty/
H A Dtest_recanon.orch21 spawn("readsz", "-e")
32 spawn("readsz", "-e")
43 spawn("cat")
58 spawn("readsz", "-e")
66 spawn("true")
73 spawn("readsz", "-c", "1")
83 spawn("readsz", "-c", 1)
H A Dtest_canon.orch10 spawn("cat")
47 spawn("fionread")
74 spawn("readsz", table.unpack(arg))
H A Dtest_ncanon.orch11 spawn(...)
36 spawn("fionread")
/freebsd/contrib/bc/tests/
H A Dhistory.py151 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore')
191 child = pexpect.spawn(exe, args=args, env=env, encoding='utf-8', codec_errors='ignore')
250 child = pexpect.spawn(exe, args=args, env=env)
282 child = pexpect.spawn(exe, args=args, env=env)
319 child = pexpect.spawn(exe, args=args, env=env)
354 child = pexpect.spawn(exe, args=args, env=env)
394 child = pexpect.spawn(exe, args=args, env=env)
458 child = pexpect.spawn(exe, args=args, env=env)
492 child = pexpect.spawn(exe, args=args, env=env)
523 child = pexpect.spawn(exe, args=args, env=env)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/net/wireless/
H A Dqcom,ipq5332-wifi.yaml36 - description: Spawn acknowledge interrupt
88 - const: spawn
171 - description: Spawn WCSS pd
179 - const: spawn
257 "spawn",
314 "spawn";
/freebsd/libexec/rc/rc.d/
H A Dpflog79 # Check if spawning multiple pflogd and told what to spawn
101 # Check if spawning multiple pflogd and not told what to spawn
108 # Typical case, spawn single instance only.
/freebsd/contrib/lyaml/spec/
H A Dspec_helper.lua8 local spawn = require 'specl.shell'.spawn
9 local objdir = spawn('./build-aux/luke --value=objdir').output
115 -- Allow user override of LUA binary used by hell.spawn, falling
135 local proc = hell.spawn(cmd)
/freebsd/contrib/kyua/utils/process/
H A Dexecutor.hpp42 /// 2) Spawn one or more processes with spawn(). On the caller side, keep
54 /// spawn() and spawn_followup() are balanced with wait() and wait_any() calls.
104 /// executor::spawn() to when it is cleaned up with exit_handle::cleanup().
205 exec_handle spawn(Hook,
/freebsd/lib/libdpv/
H A Dutil.c30 #include <spawn.h>
50 * Spawn a sh(1) command. Writes the resulting process ID to the pid_t pointed
53 * by the spawned sh(1) command). Returns `-1' if unable to spawn command.
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DParallel.h97 // Spawn a task, but does not wait for it to finish.
100 void spawn(std::function<void()> f);
145 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort()
160 // the number of spawn() calls. We'll create up to 1024 tasks here.
187 TG.spawn([=, &Transform, &Reduce, &Results] { in parallel_transform_reduce()
/freebsd/crypto/krb5/src/lib/krb5/rcache/
H A Dt_rcfile2.c41 * spawn <nprocesses> subprocesses, each of which stores <nreps> unique
46 * spawn <nprocesses> subprocesses, each of which tries to store the same
119 /* Spawn multiple child processes, each storing a sequence of unique tags.
148 /* Spawn multiple child processes, all trying to store the same tag. Verify
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DParallel.cpp53 // Spawn all but one of the threads in another thread as spawning threads in ThreadPoolExecutor()
185 void TaskGroup::spawn(std::function<void()> F) { in spawn() function in llvm::parallel::TaskGroup
215 TG.spawn([=, &Fn] { in parallelFor()
221 TG.spawn([=, &Fn] { in parallelFor()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_stress/
H A Dzvol_stress.ksh40 # 2. In parallel, spawn an fio "write and verify" for each zvol
97 # Spawn off one fio per zvol in parallel
100 # Spawn one fio per zvol as its own process
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBErrorDocstrings.i7 '''Create target, spawn a process, and attach to it by id.'''
11 # Spawn a new process and don't display the stdout if not in TraceOn() mode.
/freebsd/contrib/libarchive/tar/test/
H A Dtest_option_lz4.c32 /* Some systems fail immediately to spawn the new process. */ in DEFINE_TEST()
38 /* Some systems successfully spawn the new process, in DEFINE_TEST()

12345678