SIM: Comment out skip scheduler debug output that can hang the simulation.
This commit is contained in:
parent
c5ac473bc0
commit
485aa6b231
|
@ -83,7 +83,7 @@ void up_block_task(struct tcb_s *tcb, tstate_t task_state)
|
|||
ASSERT((tcb->task_state >= FIRST_READY_TO_RUN_STATE) &&
|
||||
(tcb->task_state <= LAST_READY_TO_RUN_STATE));
|
||||
|
||||
sinfo("Blocking TCB=%p\n", tcb);
|
||||
//sinfo("Blocking TCB=%p\n", tcb);
|
||||
|
||||
/* Remove the tcb task from the ready-to-run list. If we
|
||||
* are blocking the task at the head of the task list (the
|
||||
|
|
|
@ -322,7 +322,7 @@ int syslog_flush_intbuffer(FAR const struct syslog_channel_s *channel,
|
|||
{
|
||||
/* Transfer one character to time. This is inefficient, but is
|
||||
* done in this way to: (1) Deal with concurrent modification of
|
||||
* the interrutp buffer from interrupt activity, (2) Avoid keeper
|
||||
* the interrupt buffer from interrupt activity, (2) Avoid keeper
|
||||
* interrupts disabled for a long time, and (3) to handler
|
||||
* wraparound of the circular buffer indices.
|
||||
*/
|
||||
|
|
|
@ -84,7 +84,7 @@ static inline void _files_semtake(FAR struct filelist *list)
|
|||
* Name: file_detach
|
||||
*
|
||||
* Description:
|
||||
* This function is used to device drivers to create a task-independent
|
||||
* This function is used in device drivers to create a task-independent
|
||||
* handle to an entity in the file system. file_detach() duplicates the
|
||||
* 'struct file' that underlies the file descriptor, then closes the file
|
||||
* descriptor.
|
||||
|
|
Loading…
Reference in New Issue