Home
last modified time | relevance | path

Searched refs:busy (Results 1 – 25 of 132) sorted by relevance

123456

/titanic_44/usr/src/uts/common/os/
H A Dconsole.c258 int busy, spl; in console_putmsg() local
267 busy = console_hold(); in console_putmsg()
268 spl = console_enter(busy); in console_putmsg()
272 console_exit(busy, spl); in console_putmsg()
284 int busy, spl; in console_vprintf() local
296 busy = console_hold(); in console_vprintf()
297 spl = console_enter(busy); in console_vprintf()
301 console_exit(busy, spl); in console_vprintf()
327 int busy, spl; in console_puts() local
329 busy = console_hold(); in console_puts()
[all …]
/titanic_44/usr/src/lib/libsqlite/src/
H A Dtest4.c40 int busy; /* True if this thread is in use */ member
136 if( threadset[i].busy ){ in tcl_thread_create()
140 threadset[i].busy = 1; in tcl_thread_create()
149 threadset[i].busy = 0; in tcl_thread_create()
183 if( !threadset[i].busy ){ in tcl_thread_wait()
203 p->busy = 0; in stop_thread()
227 if( threadset[i].busy ) stop_thread(&threadset[i]); in tcl_thread_halt()
232 if( !threadset[i].busy ){ in tcl_thread_halt()
263 if( !threadset[i].busy ){ in tcl_thread_argc()
295 if( !threadset[i].busy ){ in tcl_thread_argv()
[all …]
H A Dmain.c85 assert( db->init.busy ); in sqliteInitCallback()
323 assert( db->init.busy ); in sqliteInitOne()
385 if( db->init.busy ) return SQLITE_OK; in sqliteInit()
388 db->init.busy = 1; in sqliteInit()
408 db->init.busy = 0; in sqliteInit()
705 if( !db->init.busy ){ in sqlite_compile()
727 assert( (db->flags & SQLITE_Initialized)!=0 || db->init.busy ); in sqlite_compile()
732 if( db->xTrace && !db->init.busy ){ in sqlite_compile()
/titanic_44/usr/src/uts/common/io/chxge/com/
H A Despi.c52 int busy; in tricn_write() local
61 busy = t1_wait_op_done(adapter, A_ESPI_GOSTAT, F_ESPI_CMD_BUSY, 0, in tricn_write()
64 if (busy) in tricn_write()
67 return busy; in tricn_write()
74 int busy, attempts = TRICN_CMD_ATTEMPTS;
86 busy = status & F_ESPI_CMD_BUSY;
87 } while (busy && --attempts);
89 if (busy)
93 return busy;
H A Dtp.c418 int busy = 0; in t1_tp_reset() local
428 busy = t1_wait_op_done(adapter, A_TP_RESET, F_CM_MEMMGR_INIT, in t1_tp_reset()
432 if (!busy) in t1_tp_reset()
437 return busy; in t1_tp_reset()
/titanic_44/usr/src/uts/common/tnf/
H A Dtrace_init.c114 ASSERT(!LOCK_HELD(&ops->busy)); in tnf_trace_init()
115 LOCK_INIT_HELD(&ops->busy); /* XXX save a call */ in tnf_trace_init()
129 LOCK_INIT_CLEAR(&ops->busy); /* XXX save a call */ in tnf_trace_init()
H A Dtrace_funcs.c115 if (!lock_try(&ops->busy)) /* atomic op flushes WB */ in tnf_trace_alloc()
276 LOCK_INIT_CLEAR(&ops->busy); /* XXX save a call */ in tnf_trace_alloc()
302 LOCK_INIT_CLEAR(&ops->busy); /* XXX save a call */ in tnf_trace_commit()
330 LOCK_INIT_CLEAR(&ops->busy); /* XXX save a call */ in tnf_trace_rollback()
/titanic_44/usr/src/uts/common/fs/getgen/
H A Dgetgen.c24 boolean_t busy; member
170 if (sp->busy != B_TRUE) { in gg_close()
174 sp->busy = B_FALSE; in gg_close()
195 if ((flag & FEXCL) && (sp->busy == B_TRUE)) { in gg_open()
199 sp->busy = B_TRUE; in gg_open()
239 if (sp->busy == B_TRUE) { in gg_detach()
275 sp->busy = B_FALSE; in gg_attach()
/titanic_44/usr/src/uts/sun4/io/efcode/
H A Dfc_subr.c160 fp->busy = FC_R_INIT; in fcode_interpreter()
196 while (fp->busy != FC_R_DONE) in fcode_interpreter()
240 if (fp->busy == FC_R_INIT) { in fcode_timer()
243 fp->busy = FC_R_DONE; in fcode_timer()
254 fp->busy = FC_R_DONE; in fcode_timer()
289 if (fp->busy == FC_R_INIT) { in fc_get_request()
290 fp->busy = FC_R_BUSY; in fc_get_request()
313 ASSERT(fp->busy == FC_R_BUSY); in fc_finish_request()
316 fp->busy = FC_R_DONE; in fc_finish_request()
/titanic_44/usr/src/lib/libsqlite/test/
H A Dlock.test173 # tries to start a transaction, we get a busy callback.
181 db2 busy callback
192 db2 busy callback
203 db2 busy callback
209 # In this test, the 3rd invocation of the busy callback causes
221 db2 busy callback
235 db2 busy callback
242 # Test the built-in busy timeout handler
265 # Make sure the busy handler and error messages work when
287 db2 busy callback
/titanic_44/usr/src/cmd/sh/
H A Dblok.c43 #define busy(x) (Rcheat((x)->word) & BUSY) macro
84 if (!busy(p)) { in alloc()
85 while (!busy(q = p->word)) in alloc()
228 if (busy(p)) in chkbptr()
258 if (busy(p)) in chkmem()
/titanic_44/usr/src/uts/common/io/
H A Dpshot.c663 pshot->busy = 0; in pshot_attach()
1152 ++(pshot->busy); in pshot_ctl()
1158 pshot->busy); in pshot_ctl()
1178 ASSERT(pshot->busy > 0); in pshot_ctl()
1179 --pshot->busy; in pshot_ctl()
1185 pshot->busy); in pshot_ctl()
1233 ++(pshot->busy); in pshot_ctl()
1239 pshot->busy); in pshot_ctl()
1254 ASSERT(pshot->busy > 0); in pshot_ctl()
1255 --pshot->busy; in pshot_ctl()
[all …]
H A Decpp.conf68 centronics-wait-for-busy=5000;
/titanic_44/usr/src/lib/libast/common/vmalloc/
H A Dvmmopen.c72 size_t busy; /* amount in use */ member
112 (off_t)mm->size != size || mm->busy > mm->size )
140 hdr->busy = MM_START;
208 mmdc->mm->busy = nsize+MM_START;
227 { if(mmdc->mm->busy > MM_START)
/titanic_44/usr/src/lib/libtnfprobe/
H A Dtrace_funcs.c121 if (ops->busy) in tnf_trace_alloc()
123 ops->busy = 1; in tnf_trace_alloc()
325 ops->busy = 0; in tnf_trace_alloc()
344 set_p->tpd_p->busy = 0; in tnf_trace_end()
/titanic_44/usr/src/uts/sun4u/sunfire/io/
H A Dac_add.c224 if (!MEM_BOARD_VISIBLE(board) || mem_info->busy || in ac_add_memory()
238 mem_info->busy = TRUE; in ac_add_memory()
247 mem_info->busy = FALSE; in ac_add_memory()
H A Dac_del.c504 if (!MEM_BOARD_VISIBLE(board) || mem_info->busy || in ac_del_memory()
521 mem_info->busy = TRUE; in ac_del_memory()
541 ASSERT(mem_info->busy != FALSE); in ac_del_memory()
543 mem_info->busy = FALSE; in ac_del_memory()
564 ASSERT(mem_info->busy != FALSE); in ac_del_memory()
566 mem_info->busy = FALSE; in ac_del_memory()
H A Dac_stat.c120 statp->busy = (mem_info->busy != FALSE); in ac_mem_stat()
189 stat32p->busy = statp->busy; in ac_mem_stat()
/titanic_44/usr/src/uts/sun4/os/
H A Dprom_subr.c381 console_enter(int busy) in console_enter() argument
385 if (busy && panicstr == NULL) { in console_enter()
395 console_exit(int busy, int spl) in console_exit() argument
397 if (busy && panicstr == NULL) { in console_exit()
/titanic_44/usr/src/cmd/th_tools/
H A Dth_script.sh33 th_manage $1 getstate | read path state busy
38 th_manage $1 getstate | read path state busy
/titanic_44/usr/src/lib/libtsol/common/
H A Dcall_labeld.c98 int busy = 0; /* number of busy loops */ in __call_labeld() local
263 if (errno == EAGAIN && busy++ < 10) { in __call_labeld()
271 (void) printf("door_call failed EAGAIN # %d\n", busy); in __call_labeld()
/titanic_44/usr/src/uts/sun4u/cpu/
H A Dus3_cheetah.c158 int lo, busy, nack, shipped = 0; in send_mondo_set() local
211 busy = nack = 0; in send_mondo_set()
264 "" PRIx64 " cpuids:", nack, busy, idsr); in send_mondo_set()
329 busy++; in send_mondo_set()
349 busy = 0; in send_mondo_set()
H A Dus3_jalapeno.c180 int lo, busy, nack, shipped = 0; in send_mondo_set() local
211 busy = nack = 0; in send_mondo_set()
259 "" PRIx64 " cpuids:", nack, busy, idsr); in send_mondo_set()
274 busy++; in send_mondo_set()
294 busy = 0; in send_mondo_set()
/titanic_44/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DPoold.java728 boolean busy = true; in initialize()
729 while (busy && shouldRun.get()) { in initialize()
730 busy = false; in initialize()
758 busy = true; in initialize()
779 busy = true; in initialize()
/titanic_44/usr/src/lib/cfgadm_plugins/fp/common/
H A Dcfga_list.c1575 cfga_busy_t busy; in do_stat_fc_dev() local
1601 busy = ((dctl_state & DEVICE_BUSY) == DEVICE_BUSY) ? 1 : 0; in do_stat_fc_dev()
1603 busy = 0; in do_stat_fc_dev()
1691 lap->listp->ldata.ap_busy = busy; in do_stat_fc_dev()
1716 matchldp->ldata.ap_busy = busy; in do_stat_fc_dev()
1876 clp->ap_busy = busy; in do_stat_fc_dev()
2134 cfga_busy_t busy; in stat_path_info_FCP_dev() local
2292 busy = ((dctl_state & DEVICE_BUSY) in stat_path_info_FCP_dev()
2295 busy = 0; in stat_path_info_FCP_dev()
2297 clp->ap_busy = busy; in stat_path_info_FCP_dev()
[all …]

123456