/freebsd/sys/contrib/device-tree/src/arm/st/ |
H A D | ste-nomadik-pinctrl.dtsi | 54 ste,sleep = <SLPM_ENABLED>; 55 ste,sleep-wakeup = <SLPM_WAKEUP_DISABLE>; 56 ste,sleep-pull-disable = <SLPM_PDIS_DISABLED>; 60 ste,sleep = <SLPM_ENABLED>; 61 ste,sleep-wakeup = <SLPM_WAKEUP_ENABLE>; 62 ste,sleep-pull-disable = <SLPM_PDIS_DISABLED>; 66 ste,sleep = <SLPM_ENABLED>; 67 ste,sleep-wakeup = <SLPM_WAKEUP_ENABLE>; 68 ste,sleep-pull-disable = <SLPM_PDIS_ENABLED>; 72 ste,sleep = <SLPM_ENABLED>; [all …]
|
/freebsd/usr.sbin/daemon/tests/ |
H A D | daemon_test.sh | 33 daemon -P daemon.pid -p sleep.pid sleep 300 35 atf_check -s exit:0 -o match:"daemon: sleep" ps -p `cat daemon.pid` 36 atf_check -s exit:0 test -f sleep.pid 37 atf_check -s exit:0 -o match:"[0-9] sleep 300$" ps -p `cat sleep.pid` 44 sleep_pid=`cat sleep.pid` 47 # NB: killing the sleep should kill the daemon too, so we musn't fail 57 # Executing sleep by relative path will only work from / 58 daemon -p ${PWD}/sleep.pid -c bin/sleep 300 59 atf_check -s exit:0 test -f sleep.pid 60 atf_check -s exit:0 -o match:"[0-9] bin/sleep 300$" \ [all …]
|
/freebsd/share/man/man9/ |
H A D | sleepqueue.9 | 90 Sleep queues provide a mechanism for suspending execution of a thread until 100 sleep queue. 101 When a thread blocks on a wait channel it donates its inactive sleep queue 104 the wait channel that it was blocked on gives it an inactive sleep queue for 109 function allocates an inactive sleep queue and is used to assign a 110 sleep queue to a thread during thread creation. 113 function frees the resources associated with an inactive sleep queue and is 116 Active sleep queues are stored in a hash table hashed on the addresses pointed 118 Each bucket in the hash table contains a sleep queue chain. 119 A sleep queue chain contains a spin mutex and a list of sleep queues that hash [all …]
|
H A D | locking.9 | 113 Threads holding an exclusive lock may sleep, 118 between them is that shared/exclusive locks may be held during unbounded sleep. 119 Acquiring a contested shared/exclusive lock can perform an unbounded sleep. 137 They have features other lock types do not have such as sleep 198 .Ss Sleep/Wakeup 213 If a thread must wait for an external event, it is put to sleep by 219 Threads may also wait using one of the locking primitive sleep routines 228 the thread is being put to sleep. 237 Several of the sleep functions including 240 and the locking primitive sleep routines specify an additional lock [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | ste,nomadik.txt | 48 - ste,sleep: <0/1> 49 0: sleep mode disable, 50 1: sleep mode enable. 52 - ste,sleep-input: <0/1/2/3> 53 0: sleep input with no pull, 54 1: sleep input with pull up, 55 2: sleep input with pull down. 56 3: sleep input and keep last input configuration (no pull, pull up or pull down). 58 - ste,sleep-output: <0/1/2> 59 0: sleep output low, [all …]
|
H A D | sprd,pinctrl.txt | 29 to configure the pin sleep mode, function select and sleep related 32 Now we have 4 systems for sleep mode on SC9860 SoC: AP system, 33 PUBCP system, TGLDSP system and AGDSP system. And the pin sleep 42 In some situation we need set the pin sleep mode and pin sleep related 43 configuration, to set the pin sleep related configuration automatically 44 by hardware when the system specified by sleep mode goes into deep 45 sleep mode. For example, if we set the pin sleep mod [all...] |
/freebsd/bin/pkill/tests/ |
H A D | pkill-j_test.sh | 18 sleep=$(pwd)/sleep.txt 19 ln -sf /bin/sleep $sleep 24 command=daemon -p ${PWD}/${base}_1_1.pid $sleep $sleep_amount & 27 command=daemon -p ${PWD}/${base}_1_2.pid $sleep $sleep_amount & 29 $sleep $sleep_amount & 43 sleep 0.1 45 sleep 0.5 47 if pkill -f -j "$jid" $sleep && sleep 0.5 && 61 command=daemon -p ${PWD}/${base}_2_1.pid $sleep $sleep_amount & 64 command=daemon -p ${PWD}/${base}_2_2.pid $sleep $sleep_amount & [all …]
|
H A D | pkill-x_test.sh | 8 sleep=$(pwd)/sleep.txt 9 ln -sf /bin/sleep $sleep 10 $sleep 5 & 11 sleep 0.3 18 pkill -x sleep -P $$ 24 rm -f $sleep 27 sleep=$(pwd)/sleep.txt 28 ln -sf /bin/sleep $sleep 29 $sleep 5 & 30 sleep 0.3 [all …]
|
H A D | pkill-_g_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 13 pkill -f -G $rgid $sleep 23 rm -f $sleep 27 sleep=$(pwd)/sleep.txt 28 ln -sf /bin/sleep $sleep 29 $sleep 5 & 30 sleep 0.3 [all …]
|
H A D | pkill-_u_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 13 pkill -f -U $ruid $sleep 23 rm -f $sleep 27 sleep=$(pwd)/sleep.txt 28 ln -sf /bin/sleep $sleep 29 $sleep 5 & 30 sleep 0.3 [all …]
|
H A D | pkill-g_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 13 pkill -f -g $pgrp $sleep 23 rm -f $sleep 26 sleep=$(pwd)/sleep.txt 27 ln -sf /bin/sleep $sleep 28 $sleep 5 & 29 sleep 0.3 [all …]
|
H A D | pkill-s_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 13 pkill -f -s $sid $sleep 23 rm -f $sleep 26 sleep=$(pwd)/sleep.txt 27 ln -sf /bin/sleep $sleep 28 $sleep 5 & 29 sleep 0.3 [all …]
|
H A D | pgrep-_g_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 14 pid=`pgrep -f -G $rgid $sleep` 21 rm -f $sleep 25 sleep=$(pwd)/sleep.txt 26 ln -sf /bin/sleep $sleep 27 $sleep 5 & 28 sleep 0.3 [all …]
|
H A D | pgrep-_u_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 14 pid=`pgrep -f -U $ruid $sleep` 21 rm -f $sleep 25 sleep=$(pwd)/sleep.txt 26 ln -sf /bin/sleep $sleep 27 $sleep 5 & 28 sleep 0.3 [all …]
|
H A D | pgrep-s_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 14 pid=`pgrep -f -s $sid $sleep` 21 rm -f $sleep 24 sleep=$(pwd)/sleep.txt 25 ln -sf /bin/sleep $sleep 26 $sleep 5 & 27 sleep 0.3 [all …]
|
H A D | pgrep-g_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 $sleep 5 & 12 sleep 0.3 14 pid=`pgrep -f -g $pgrp $sleep` 21 rm -f $sleep 24 sleep=$(pwd)/sleep.txt 25 ln -sf /bin/sleep $sleep 26 $sleep 5 & 27 sleep 0.3 [all …]
|
H A D | pgrep-j_test.sh | 18 sleep=$(pwd)/sleep.txt 19 ln -sf /bin/sleep $sleep 24 command=daemon -p ${PWD}/${base}_1_1.pid $sleep $sleep_amount & 27 command=daemon -p ${PWD}/${base}_1_2.pid $sleep $sleep_amount & 28 sleep 0.5 39 sleep 0.1 41 sleep 0.5 43 pid1="$(pgrep -f -x -j "$jid" "$sleep $sleep_amount" | sort)" 58 command=daemon -p ${PWD}/${base}_2_1.pid $sleep $sleep_amount & 61 command=daemon -p ${PWD}/${base}_2_2.pid $sleep $sleep_amount & [all …]
|
H A D | pgrep-_lf_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 daemon -p $pidfile $sleep 5 12 sleep 0.3 14 pid=`pgrep -f -L -F $pidfile $sleep` 23 $sleep 5 & 24 sleep 0.3 27 pgrep -f -L -F $pidfile $sleep 2>/dev/null 40 rm -f $sleep
|
H A D | pkill-_lf_test.sh | 9 sleep=$(pwd)/sleep.txt 10 ln -sf /bin/sleep $sleep 11 daemon -p $pidfile $sleep 5 12 sleep 0.3 13 pkill -f -L -F $pidfile $sleep 25 $sleep 5 & 26 sleep 0.3 29 pkill -f -L -F $pidfile $sleep 2>/dev/null 42 rm -f $sleep
|
H A D | pkill-t_test.sh | 18 sleep=$(pwd)/sleep.txt 19 ln -sf /bin/sleep $sleep 20 $sleep 5 & 21 sleep 0.3 22 pkill -f -t $tty $sleep 32 $sleep 5 & 33 sleep 0.3 34 pkill -f -t $ttyshort $sleep 44 rm -f $sleep
|
/freebsd/sys/sys/ |
H A D | sleepqueue.h | 32 * Sleep queue interface. Sleep/wakeup, condition variables, and sx 33 * locks use a sleep queue for the queue of threads blocked on a sleep 36 * A thread calls sleepq_lock() to lock the sleep queue chain associated 38 * add themself onto a sleep queue and call one of the sleepq_wait() 39 * functions to actually go to sleep. If a thread needs to abort a sleep 40 * operation it should call sleepq_release() to unlock the associated sleep 44 * If the thread only wishes to sleep fo [all...] |
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | tps65910.txt | 60 - ti,en-gpio-sleep: enable sleep control for gpios 64 - ti,sleep-enable: Enable SLEEP state. 65 - ti,sleep-keep-therm: Keep thermal monitoring on in sleep state. 66 - ti,sleep-keep-ck32k: Keep the 32KHz clock output on in sleep state. 67 - ti,sleep-keep-hsclk: Keep high speed internal clock on in sleep state. 70 - ti,regulator-ext-sleep-control: enable external sleep 93 ti,en-gpio-sleep = <0 0 1 0 0 0 0 0 0>; 115 ti,regulator-ext-sleep-control = <0>; 124 ti,regulator-ext-sleep-control = <4>; 133 ti,regulator-ext-sleep-control = <0>; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
H A D | pmc.txt | 8 whose PMC is compatible, and implies deep-sleep capability. 12 whose PMC is compatible, and implies deep-sleep capability. 19 bit assignments are indicated via the sleep specifier in each device's 20 sleep property. 34 a wakeup source from deep sleep. 36 Sleep specifiers: 38 fsl,mpc8349-pmc: Sleep specifiers consist of one cell. For each bit 40 and cleared on suspend, and restored on resume. This sleep controller 43 fsl,mpc8536-pmc: Sleep specifiers consist of three cells, the third of 46 This sleep controller only supports disabling devices during system [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/ |
H A D | sleep.yaml | 4 $id: http://devicetree.org/schemas/powerpc/sleep.yaml# 7 title: PowerPC sleep property 17 may contain a "sleep" property which describes these connections. 19 The sleep property consists of one or more sleep resources, each of 20 which consists of a phandle to a sleep controller, followed by a 21 controller-specific sleep specifier of zero or more cells. 24 by the sleep controller. Some examples of the types of low power modes 35 such nodes should be placed on a virtual bus, where the bus has the sleep 37 reasonably grouped in this manner, then create a virtual sleep controller 39 sleep-map should wait until its necessity is demonstrated). [all …]
|
/freebsd/lib/libsys/ |
H A D | _umtx_op.2 | 63 Allow selection of the process-shared sleep queue for the thread sleep 65 and the operation must sleep. 66 The process-shared or process-private sleep queue is selected based on 70 Otherwise, if the flag is not specified, the process-private sleep queue 74 .Sx SLEEP QUEUES 75 subsection below for more details on sleep queues. 137 has a separate sleep queue associated 384 .Ss SLEEP QUEUES 387 .Em sleep , 397 provides requests which explicitly put the thread to sleep. [all …]
|