Home
last modified time | relevance | path

Searched refs:blocked (Results 1 – 25 of 66) sorted by relevance

123

/freebsd-9-stable/contrib/ntp/lib/isc/win32/
Dapp.c56 static isc_boolean_t blocked = ISC_FALSE; variable
194 if (want_shutdown && blocked) in isc__app_run()
248 REQUIRE(!blocked); in isc__app_block()
250 blocked = ISC_TRUE; in isc__app_block()
257 REQUIRE(blocked); in isc__app_unblock()
258 blocked = ISC_FALSE; in isc__app_unblock()
/freebsd-9-stable/cddl/contrib/dtracetoolkit/Examples/
Dlockbydist_example.txt26 In the above output, oracle can be seen to have blocked 10 times from
28 the kernel, has blocked several times also. metadata-manager only
29 blocked once, which was at least 262 microseconds.
107 The length of time threads were blocked, and the number of such blocks
Dlockbyproc_example.txt37 many threads were blocked at the same time, eg, it could have been 19 threads
38 blocked during the same 1 ms.
/freebsd-9-stable/contrib/diff/src/
Dsdiff.c636 sigset_t blocked; in main() local
644 sigemptyset (&blocked); in main()
645 sigaddset (&blocked, SIGINT); in main()
646 sigaddset (&blocked, SIGPIPE); in main()
647 sigprocmask (SIG_BLOCK, &blocked, &procmask); in main()
1214 sigset_t blocked; in temporary_file() local
1216 sigemptyset (&blocked); in temporary_file()
1217 sigaddset (&blocked, SIGINT); in temporary_file()
1218 sigprocmask (SIG_BLOCK, &blocked, &procmask); in temporary_file()
/freebsd-9-stable/contrib/ntp/lib/isc/unix/
Dapp.c135 isc_boolean_t blocked; member
263 ctx->blocked = ISC_FALSE; in isc__app_ctxstart()
688 if (ctx->want_shutdown && ctx->blocked) in isc__app_ctxrun()
841 REQUIRE(!isc_g_appctx.blocked); in isc__app_block()
843 isc_g_appctx.blocked = ISC_TRUE; in isc__app_block()
860 REQUIRE(isc_g_appctx.blocked); in isc__app_unblock()
862 isc_g_appctx.blocked = ISC_FALSE; in isc__app_unblock()
/freebsd-9-stable/sys/dev/sfxge/
Dsfxge_tx.c109 if (txq->blocked) { in sfxge_tx_qcomplete()
189 KASSERT(!txq->blocked, ("txq->blocked")); in sfxge_tx_qlist_post()
221 txq->blocked = 1; in sfxge_tx_qlist_post()
232 txq->blocked = 0; in sfxge_tx_qlist_post()
248 KASSERT(!txq->blocked, ("txq->blocked")); in sfxge_tx_queue_mbuf()
387 if (txq->blocked) in sfxge_tx_qdpl_drain()
410 KASSERT(txq->blocked || stdp->std_count == 0, in sfxge_tx_qdpl_drain()
431 if (!txq->blocked) in sfxge_tx_qdpl_service()
656 if (txq->blocked) { in sfxge_if_start_locked()
1053 if (txq->blocked) { in sfxge_tx_qunblock()
[all …]
Dsfxge_tx.h142 int blocked __aligned(CACHE_LINE_SIZE);
/freebsd-9-stable/contrib/bind9/lib/isc/unix/
Dapp.c141 isc_boolean_t blocked; member
272 ctx->blocked = ISC_FALSE; in isc__app_ctxstart()
715 if (ctx->want_shutdown && ctx->blocked) in isc__app_ctxrun()
879 REQUIRE(!isc_g_appctx.blocked); in isc__app_block()
881 isc_g_appctx.blocked = ISC_TRUE; in isc__app_block()
898 REQUIRE(isc_g_appctx.blocked); in isc__app_unblock()
900 isc_g_appctx.blocked = ISC_FALSE; in isc__app_unblock()
/freebsd-9-stable/usr.sbin/bsnmpd/modules/snmp_pf/
DBEGEMOT-PF-MIB.txt674 "The number of IPv4 bytes blocked coming in on this interface."
690 "The number of IPv4 bytes blocked going out on this interface."
706 "The number of IPv4 packets blocked coming in on this interface."
722 "The number of IPv4 packets blocked going out on this interface."
738 "The number of IPv6 bytes blocked coming in on this interface."
754 "The number of IPv6 bytes blocked going out on this interface."
771 "The number of IPv6 packets blocked coming in on this interface."
787 "The number of IPv6 packets blocked going out on this interface."
925 "The number of bytes blocked coming in matching the table."
951 "The number of bytes blocked going out matching the table."
[all …]
/freebsd-9-stable/sys/netinet6/
Dudp6_usrreq.c307 int blocked; in udp6_input() local
316 blocked = im6o_mc_filter(imo, ifp, in udp6_input()
319 if (blocked != MCAST_PASS) { in udp6_input()
320 if (blocked == MCAST_NOTGMEMBER) in udp6_input()
322 if (blocked == MCAST_NOTSMEMBER || in udp6_input()
323 blocked == MCAST_MUTED) in udp6_input()
Draw_ip6.c235 int blocked; in rip6_input() local
237 blocked = MCAST_PASS; in rip6_input()
246 blocked = im6o_mc_filter(in6p->in6p_moptions, in rip6_input()
251 if (blocked != MCAST_PASS) { in rip6_input()
/freebsd-9-stable/sys/ofed/drivers/net/mlx4/
Den_tx.c251 ring->blocked = 0; in mlx4_en_activate_tx_ring()
445 if (unlikely(ring->blocked) && !mlx4_en_tx_ring_is_full(ring)) { in mlx4_en_process_tx_cq()
446 ring->blocked = 0; in mlx4_en_process_tx_cq()
447 if (atomic_fetchadd_int(&priv->blocked, -1) == 1) in mlx4_en_process_tx_cq()
695 if (ring->blocked == 0) in mlx4_en_xmit()
696 atomic_add_int(&priv->blocked, 1); in mlx4_en_xmit()
700 ring->blocked = 1; in mlx4_en_xmit()
/freebsd-9-stable/sys/netinet/
Dudp_usrreq.c482 int blocked; in udp_input() local
492 blocked = imo_multi_filter(imo, ifp, in udp_input()
495 if (blocked != MCAST_PASS) { in udp_input()
496 if (blocked == MCAST_NOTGMEMBER) in udp_input()
498 if (blocked == MCAST_NOTSMEMBER || in udp_input()
499 blocked == MCAST_MUTED) in udp_input()
Draw_ip.c372 int blocked; in rip_input() local
374 blocked = MCAST_PASS; in rip_input()
383 blocked = imo_multi_filter(inp->inp_moptions, in rip_input()
389 if (blocked != MCAST_PASS) { in rip_input()
/freebsd-9-stable/contrib/tcsh/nls/german/
Dset267 64 Process's lwps are blocked
/freebsd-9-stable/contrib/tcsh/nls/russian/
Dset267 64 Process's lwps are blocked
/freebsd-9-stable/contrib/gdb/gdb/
Dlin-lwp.c842 sigset_t blocked, ignored; in lin_lwp_has_pending() local
845 linux_proc_pending_signals (pid, pending, &blocked, &ignored); in lin_lwp_has_pending()
853 || sigismember (&blocked, i) in lin_lwp_has_pending()
872 sigset_t pending, intersection, blocked, ignored; in flush_callback() local
/freebsd-9-stable/lib/libkse/thread/
Dthr_info.c154 pthread->active_priority, (pthread->blocked != 0) ? "yes" : "no", in dump_thread()
Dthr_kern.c918 thread, thread->state, thread->blocked); in dump_queues()
984 curthread->blocked = 1; in kse_sched_multi()
1005 (curthread->blocked == 0) && (THR_IN_CRITICAL(curthread))) { in kse_sched_multi()
1508 thread->blocked = 0; in kse_check_completed()
1645 if (thread->blocked != 0) { in kse_switchout_thread()
2014 if ((thread->blocked == 0) && (thread->active == 0) && in _thr_setrunnable_unlocked()
Dthr_cancel.c151 (pthread->blocked != 0 || in _pthread_cancel()
/freebsd-9-stable/contrib/tcsh/nls/ukrainian/
Dset267 64 Process's lwps are blocked
/freebsd-9-stable/contrib/tcsh/nls/C/
Dset267 64 Process's lwps are blocked
/freebsd-9-stable/contrib/tcsh/nls/finnish/
Dset267 64 Prosessin kevytprosessit Process's lwps are blocked
/freebsd-9-stable/
DMAINTAINERS83 binutils obrien Insists on BU blocked from unapproved commits
84 file obrien Insists to keep file blocked from other's unapproved
/freebsd-9-stable/contrib/tcsh/nls/french/
Dset267 64 Process's lwps are blocked

123