Home
last modified time | relevance | path

Searched refs:wait (Results 1 – 25 of 838) sorted by relevance

12345678910>>...34

/freebsd/contrib/ntp/scripts/ntp-wait/
H A Dinvoke-ntp-wait.texi1 @node ntp-wait Invocation
2 @section Invoking ntp-wait
3 @pindex ntp-wait
7 # EDIT THIS FILE WITH CAUTION (invoke-ntp-wait.texi)
10 # From the definitions ntp-wait-opts.def
16 @code{ntp-wait}
27 @code{ntp-wait}
36 using the @code{agtexi-cmd} template and the option descriptions for the @code{ntp-wait} program.
39 * ntp-wait usage:: ntp-wait hel
[all...]
H A Dntp-wait.texi3 @setfilename ntp-wait.info
4 @settitle Ntp-wait User's Manual
10 This file documents the use of @code{ntp-wait},
13 that is used to wait until @code{ntpd} has been able to
18 * ntp-wait: (ntp-wait). Wait for ntpd to synchronize and stabilize the system clock.
22 @title ntp-wait User's Manual
23 @subtitle ntp-wait, version @value{VERSION}, @value{UPDATED}
30 @node Top, ntp-wait Description, (dir), (dir)
32 This document describes the use of the NTP Project's @code{ntp-wait} program.
38 run @code{ntp-wait} to block
[all …]
/freebsd/sys/dev/enic/
H A Dvnic_dev.c182 int wait) in _vnic_dev_cmd() argument
210 for (delay = 0; delay < wait; delay++) { in _vnic_dev_cmd()
245 u64 *args, int nargs, int wait) in vnic_dev_cmd_proxy() argument
264 err = _vnic_dev_cmd(vdev, proxy_cmd, wait); in vnic_dev_cmd_proxy()
283 enum vnic_devcmd_cmd cmd, u64 *args, int nargs, int wait) in vnic_dev_cmd_no_proxy() argument
294 err = _vnic_dev_cmd(vdev, cmd, wait); in vnic_dev_cmd_no_proxy()
302 u64 *a0, u64 *a1, int wait) in vnic_dev_cmd() argument
314 args, ARRAY_SIZE(args), wait); in vnic_dev_cmd()
318 args, ARRAY_SIZE(args), wait); in vnic_dev_cmd()
322 err = vnic_dev_cmd_no_proxy(vdev, cmd, args, 2, wait); in vnic_dev_cmd()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DGraphWriter.cpp138 StringRef Filename, bool wait, in ExecGraphViewer() argument
140 if (wait) { in ExecGraphViewer()
192 bool llvm::DisplayGraph(StringRef FilenameRef, bool wait, in DisplayGraph() argument
200 wait &= !*ViewBackground; in DisplayGraph()
204 if (wait) in DisplayGraph()
208 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
217 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg)) in DisplayGraph()
228 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); in DisplayGraph()
241 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); in DisplayGraph()
303 wait = false; in DisplayGraph()
[all …]
H A DThreadPool.cpp68 QueueCondition.wait(LockGuard, [&] { in processTasks()
144 void StdThreadPool::wait() { in wait() function in StdThreadPool
148 CompletionCondition.wait(LockGuard, in wait()
152 void StdThreadPool::wait(ThreadPoolTaskGroup &Group) { in wait() function in StdThreadPool
156 CompletionCondition.wait(LockGuard, in wait()
201 void SingleThreadExecutor::wait() { in wait() function in SingleThreadExecutor
210 void SingleThreadExecutor::wait(ThreadPoolTaskGroup &) { in wait() function in SingleThreadExecutor
213 wait(); in wait()
220 SingleThreadExecutor::~SingleThreadExecutor() { wait(); } in ~SingleThreadExecutor()
/freebsd/sys/contrib/ck/include/spinlock/
H A Dhclh.h39 unsigned int wait; member
53 unowned->wait = false; in ck_spinlock_hclh_init()
68 r = ck_pr_load_uint(&head->wait); in ck_spinlock_hclh_locked()
81 thread->wait = true; in ck_spinlock_hclh_lock()
97 while (ck_pr_load_uint(&previous->wait) == true && in ck_spinlock_hclh_lock()
115 while (ck_pr_load_uint(&previous->wait) == true) in ck_spinlock_hclh_lock()
138 ck_pr_store_uint(&(*thread)->wait, false); in ck_spinlock_hclh_unlock()
H A Dclh.h40 unsigned int wait; member
50 unowned->wait = false; in ck_spinlock_clh_init()
63 r = ck_pr_load_uint(&head->wait); in ck_spinlock_clh_locked()
74 thread->wait = true; in ck_spinlock_clh_lock()
86 while (ck_pr_load_uint(&previous->wait) == true) in ck_spinlock_clh_lock()
111 ck_pr_store_uint(&(*thread)->wait, false); in ck_spinlock_clh_unlock()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h63 virtual void wait() = 0;
70 virtual void wait(ThreadPoolTaskGroup &Group) = 0;
114 asyncEnqueue([Future]() { Future.wait(); }, Group); in asyncImpl()
138 void wait() override;
145 void wait(ThreadPoolTaskGroup &Group) override;
227 void wait() override;
230 void wait(ThreadPoolTaskGroup &Group) override;
271 ~ThreadPoolTaskGroup() { wait(); } in ~ThreadPoolTaskGroup()
281 void wait() { Pool.wait(*this); } in wait() function
/freebsd/contrib/unbound/util/
H A Dwinsock_event.c164 struct timeval* wait) in handle_timeouts() argument
168 wait->tv_sec = (time_t)-1; in handle_timeouts()
179 wait->tv_sec = p->ev_timeout.tv_sec - now->tv_sec; in handle_timeouts()
181 wait->tv_sec--; in handle_timeouts()
182 wait->tv_usec = 1000000 - (now->tv_usec - in handle_timeouts()
185 wait->tv_usec = p->ev_timeout.tv_usec in handle_timeouts()
189 (long long)wait->tv_sec, (int)wait->tv_usec); in handle_timeouts()
230 static int handle_select(struct event_base* base, struct timeval* wait) in handle_select() argument
243 if(wait->tv_sec==(time_t)-1) in handle_select()
244 wait = NULL; in handle_select()
[all …]
H A Dmini_event.c143 struct timeval* wait) in handle_timeouts() argument
147 wait->tv_sec = (time_t)-1; in handle_timeouts()
157 wait->tv_sec = p->ev_timeout.tv_sec - now->tv_sec; in handle_timeouts()
159 wait->tv_sec--; in handle_timeouts()
160 wait->tv_usec = 1000000 - (now->tv_usec - in handle_timeouts()
163 wait->tv_usec = p->ev_timeout.tv_usec in handle_timeouts()
178 static int handle_select(struct event_base* base, struct timeval* wait) in handle_select() argument
184 if(wait->tv_sec==(time_t)-1) in handle_select()
185 wait = NULL; in handle_select()
191 if((ret = select(base->maxfd+1, &r, &w, NULL, wait)) == -1) { in handle_select()
[all …]
/freebsd/contrib/tnftp/src/
H A Dprogressbar.c136 struct timeval now, wait; local
175 timersub(&now, &lastupdate, &wait);
179 wait.tv_sec = 0;
182 if (quit_time > 0 && wait.tv_sec > quit_time) {
185 getprogname(), (unsigned long)wait.tv_sec);
272 } else if (wait.tv_sec >= STALLTIME) {
314 struct timeval now, td, wait; local
373 timersub(&now, &lastupdate, &wait);
374 if (wait.tv_sec >= STALLTIME)
403 alarmtimer(int wait) argument
[all …]
/freebsd/bin/sh/tests/builtins/
H A Dwait1.010 wait $p4
12 wait $p8
17 wait $p7
19 wait $p3
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp.h504 sdp_alloc_mb(struct socket *sk, u8 mid, int size, int wait) in sdp_alloc_mb() argument
509 MGETHDR(mb, wait, MT_DATA); in sdp_alloc_mb()
519 sdp_alloc_mb_data(struct socket *sk, int wait) in sdp_alloc_mb_data() argument
521 return sdp_alloc_mb(sk, SDP_MID_DATA, 0, wait); in sdp_alloc_mb_data()
525 sdp_alloc_mb_disconnect(struct socket *sk, int wait) in sdp_alloc_mb_disconnect() argument
527 return sdp_alloc_mb(sk, SDP_MID_DISCONN, 0, wait); in sdp_alloc_mb_disconnect()
542 sdp_alloc_mb_chrcvbuf_ack(struct socket *sk, int size, int wait) in sdp_alloc_mb_chrcvbuf_ack() argument
547 mb = sdp_alloc_mb(sk, SDP_MID_CHRCVBUF_ACK, sizeof(*resp_size), wait); in sdp_alloc_mb_chrcvbuf_ack()
557 sdp_alloc_mb_srcavail(struct socket *sk, u32 len, u32 rkey, u64 vaddr, int wait) in sdp_alloc_mb_srcavail() argument
562 mb = sdp_alloc_mb(sk, SDP_MID_SRCAVAIL, sizeof(*srcah), wait); in sdp_alloc_mb_srcavail()
[all …]
/freebsd/sys/kern/
H A Dsubr_smr.c367 smr_poll_cpu(smr_t c, smr_seq_t s_rd_seq, smr_seq_t goal, bool wait) in smr_poll_cpu() argument
402 if (!wait) in smr_poll_cpu()
419 smr_seq_t s_wr_seq, smr_seq_t goal, bool wait) in smr_poll_scan() argument
440 wait); in smr_poll_scan()
475 smr_poll(smr_t smr, smr_seq_t goal, bool wait) in smr_poll() argument
487 KASSERT(!wait || !SMR_ENTERED(smr), in smr_poll()
489 KASSERT(!wait || (zpcpu_get(smr)->c_flags & SMR_LAZY) == 0, in smr_poll()
545 if (!wait) { in smr_poll()
566 s_rd_seq = smr_poll_scan(smr, s, s_rd_seq, s_wr_seq, goal, wait); in smr_poll()
579 KASSERT(success || !wait, ("%s: blocking poll failed", __func__)); in smr_poll()
H A Duipc_mbuf2.c266 m_dup1(struct mbuf *m, int off, int len, int wait) in m_dup1() argument
279 n = m_getcl(wait, m->m_type, M_PKTHDR); in m_dup1()
281 n = m_getcl(wait, m->m_type, 0); in m_dup1()
284 n = m_gethdr(wait, m->m_type); in m_dup1()
286 n = m_get(wait, m->m_type); in m_dup1()
291 if (copyhdr && !m_dup_pkthdr(n, m, wait)) { in m_dup1()
313 m_tag_alloc(uint32_t cookie, uint16_t type, int len, int wait) in m_tag_alloc() argument
317 MBUF_CHECKSLEEP(wait); in m_tag_alloc()
320 t = malloc(len + sizeof(struct m_tag), M_PACKET_TAGS, wait); in m_tag_alloc()
/freebsd/contrib/kyua/utils/process/
H A Dchild_test.cpp298 const process::status status = child->wait(); in do_inherit_test()
342 process::status status = child->wait(); in child__fork_capture__ok()
375 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
388 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
422 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
436 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
472 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
495 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
520 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
534 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
[all …]
H A Doperations_test.cpp167 const process::status status = child->wait(); in check_exec_no_args()
189 const process::status status = child->wait(); in check_exec_some_args()
221 const process::status status = child->wait(); in ATF_TEST_CASE_BODY()
297 ATF_REQUIRE(::wait(&status) != -1); in ATF_TEST_CASE_BODY()
318 ATF_REQUIRE(::wait(&status) != -1); in ATF_TEST_CASE_BODY()
335 ATF_REQUIRE(::wait(&status) != -1); in ATF_TEST_CASE_BODY()
353 ATF_REQUIRE(::wait(&status) != -1); in ATF_TEST_CASE_BODY()
374 ATF_REQUIRE(::wait(&status) != -1); in ATF_TEST_CASE_BODY()
389 const process::status status = process::wait(pid); in ATF_TEST_CASE_BODY()
398 ATF_REQUIRE_THROW(process::system_error, process::wait(1)); in ATF_TEST_CASE_BODY()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.remotetcpstate.ksh.out9 tcp:::state-change to fin-wait-1 - yes
10 tcp:::state-change to close-wait - yes
11 tcp:::state-change to fin-wait-2 - yes
12 tcp:::state-change to time-wait - yes
H A Dtst.localtcpstate.ksh.out10 tcp:::state-change to fin-wait-1 - yes
11 tcp:::state-change to close-wait - yes
12 tcp:::state-change to fin-wait-2 - yes
14 tcp:::state-change to time-wait - yes
/freebsd/contrib/bc/tests/
H A Dhistory.py95 def wait(child): function
104 child.wait()
166 wait(child)
208 wait(child)
257 wait(child)
291 wait(child)
325 wait(child)
369 wait(child)
416 wait(child)
468 wait(chil
[all...]
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap3430es1-clocks.dtsi10 compatible = "ti,wait-gate-clock";
35 compatible = "ti,wait-gate-clock";
43 compatible = "ti,wait-gate-clock";
57 compatible = "ti,wait-gate-clock";
65 compatible = "ti,wait-gate-clock";
73 compatible = "ti,composite-no-wait-gate-clock";
128 compatible = "ti,omap3-no-wait-interface-clock";
144 compatible = "ti,omap3-no-wait-interface-clock";
191 compatible = "ti,omap3-no-wait-interface-clock";
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcondition_variable33 void wait(unique_lock<mutex>& lock);
35 void wait(unique_lock<mutex>& lock, Predicate pred);
78 void wait(Lock& lock);
80 void wait(Lock& lock, Predicate pred);
106 …bool wait(Lock& lock, stop_token stoken, Predicate pred); // since C…
158 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS void wait(_Lock& __lock);
160 _LIBCPP_HIDE_FROM_ABI void wait(_Lock& __lock, _Predicate __pred);
179 …_LIBCPP_AVAILABILITY_SYNC _LIBCPP_HIDE_FROM_ABI bool wait(_Lock& __lock, stop_token __stoken, _Pre…
220 void condition_variable_any::wait(_Lock& __lock) {
225 __cv_.wait(__lk);
[all …]
/freebsd/stand/i386/libi386/
H A Dtextvidc.c594 int wait; in probe_keyboard() local
606 for (wait = PROBE_MAXWAIT; wait > 0; --wait) { in probe_keyboard()
616 if (wait <= 0) in probe_keyboard()
623 for (wait = PROBE_MAXWAIT; wait > 0; --wait) { in probe_keyboard()
628 if (wait <= 0) in probe_keyboard()
/freebsd/contrib/ntp/html/hints/
H A Ddecosf24 error in the /usr/include/sys/procset.h and /usr/include/sys/wait.h
7 cowbird:/usr/include/sys# diff -c wait.h.orig wait.h
8 *** wait.h.orig Tue Feb 22 02:41:38 1994
9 --- wait.h Thu Aug 25 14:52:57 1994
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-arb-gpio-challenge.txt37 4. Otherwise, wait for a few milliseconds and see if THEIR_CLAIMS are released.
38 5. If not, back off, release the claim and wait for a few more milliseconds.
50 - slew-delay-us: microseconds to wait for a GPIO to go high. Default is 10 us.
51 - wait-retry-us: we'll attempt another claim after this many microseconds.
53 - wait-free-us: we'll give up after this many microseconds. Default is 50000 us.
71 wait-retry-us = <3000>;
72 wait-free-us = <50000>;

12345678910>>...34