trimmed the timed semaphore handling code more

This commit is contained in:
hyunghwan.chung 2016-03-23 12:58:30 +00:00
parent 26630cc385
commit 63ce721147
2 changed files with 54 additions and 37 deletions

View File

@ -296,6 +296,8 @@ static STIX_INLINE void unchain_from_processor (stix_t* stix, stix_oop_process_t
{ {
stix_ooi_t tally; stix_ooi_t tally;
/* the processor's process chain must be composed of running/runnable
* processes only */
STIX_ASSERT (proc->state == STIX_SMOOI_TO_OOP(PROC_STATE_RUNNING) || STIX_ASSERT (proc->state == STIX_SMOOI_TO_OOP(PROC_STATE_RUNNING) ||
proc->state == STIX_SMOOI_TO_OOP(PROC_STATE_RUNNABLE)); proc->state == STIX_SMOOI_TO_OOP(PROC_STATE_RUNNABLE));
@ -461,9 +463,9 @@ printf ("NO RUNNABLE PROCESS AFTER SUPSENDISION\n");
sleep_active_process (stix, PROC_STATE_RUNNABLE); sleep_active_process (stix, PROC_STATE_RUNNABLE);
unchain_from_processor (stix, proc, PROC_STATE_SUSPENDED); unchain_from_processor (stix, proc, PROC_STATE_SUSPENDED);
/* the last has been unchained from the processor and /* the last running/runnable process has been unchained
* set to SUSPENDED. the active process must be the nil * from the processor and set to SUSPENDED. the active
* nil process */ * process must be the nil nil process */
STIX_ASSERT (stix->processor->active == stix->nil_process); STIX_ASSERT (stix->processor->active == stix->nil_process);
} }
else else
@ -474,8 +476,8 @@ printf ("SWITCHING TO XXXXXXXXXXXXXXXXXXXXx\n");
unchain_from_processor (stix, proc, PROC_STATE_RUNNABLE); unchain_from_processor (stix, proc, PROC_STATE_RUNNABLE);
/* unchain_from_processor() leaves the active process /* unchain_from_processor() leaves the active process
* untouched unless the unchained process is the last * untouched unless the unchained process is the last
* process. so calling switch_to_process() which expects * running/runnable process. so calling switch_to_process()
* the active process to be valid is safe */ * which expects the active process to be valid is safe */
STIX_ASSERT (stix->processor->active != stix->nil_process); STIX_ASSERT (stix->processor->active != stix->nil_process);
switch_to_process (stix, nrp, PROC_STATE_SUSPENDED); switch_to_process (stix, nrp, PROC_STATE_SUSPENDED);
} }
@ -2850,12 +2852,14 @@ int stix_execute (stix_t* stix)
while (1) while (1)
{ {
#if 0
if (stix->processor->active == stix->nil_process) if (stix->processor->active == stix->nil_process)
{ {
/* no more process in the system */ /* no more process in the system */
STIX_ASSERT (stix->processor->tally = STIX_SMOOI_TO_OOP(0)); STIX_ASSERT (stix->processor->tally = STIX_SMOOI_TO_OOP(0));
printf ("NO MORE RUNNABLE PROCESS...\n"); printf ("NO MORE RUNNABLE PROCESS...\n");
}
#endif
if (stix->sem_heap_count > 0) if (stix->sem_heap_count > 0)
{ {
@ -2872,38 +2876,51 @@ printf ("NO MORE RUNNABLE PROCESS...\n");
ft.tv_nsec = STIX_OOP_TO_SMOOI(stix->sem_heap[0]->heap_ftime_nsec); ft.tv_nsec = STIX_OOP_TO_SMOOI(stix->sem_heap[0]->heap_ftime_nsec);
if (ft.tv_sec < now.tv_sec || (ft.tv_sec == now.tv_sec && ft.tv_nsec <= now.tv_nsec)) if (ft.tv_sec < now.tv_sec || (ft.tv_sec == now.tv_sec && ft.tv_nsec <= now.tv_nsec))
{
signal_semaphore (stix, stix->sem_heap[0]);
delete_from_sem_heap (stix, 0);
}
else
{ {
stix_oop_process_t proc; stix_oop_process_t proc;
/* THIS PART IS JUST EXPERIMENTAL... PROPER WAITING WITH IO MULTIPLEXER IS NEEDED ... */
sleep (ft.tv_sec - now.tv_sec);
proc = stix->sem_heap[0]->waiting_head; proc = stix->sem_heap[0]->waiting_head;
signal_semaphore (stix, stix->sem_heap[0]); signal_semaphore (stix, stix->sem_heap[0]);
delete_from_sem_heap (stix, 0); delete_from_sem_heap (stix, 0);
if (stix->processor->active == stix->nil_process)
{
STIX_ASSERT (proc->state == STIX_SMOOI_TO_OOP(PROC_STATE_RUNNABLE)); STIX_ASSERT (proc->state == STIX_SMOOI_TO_OOP(PROC_STATE_RUNNABLE));
STIX_ASSERT (proc == stix->processor->runnable_head); STIX_ASSERT (proc == stix->processor->runnable_head);
wake_new_process (stix, proc); wake_new_process (stix, proc);
stix->proc_switched = 1; stix->proc_switched = 1;
}
goto carry_on_switching; }
else if (stix->processor->active == stix->nil_process)
{
/* THIS PART IS JUST EXPERIMENTAL... PROPER WAITING WITH IO MULTIPLEXER IS NEEDED ... */
ft.tv_sec -= now.tv_sec;
ft.tv_nsec -= now.tv_nsec;
while (ft.tv_nsec < 0)
{
ft.tv_sec--;
ft.tv_nsec += 1000000000;
}
nanosleep (&ft, STIX_NULL);
clock_gettime (CLOCK_MONOTONIC, &now);
}
else
{
break;
} }
} }
while (stix->sem_heap_count > 0); while (stix->sem_heap_count > 0);
} }
else if (stix->processor->active == stix->nil_process)
{
/* no more waiting semaphore and no more process */
STIX_ASSERT (stix->processor->tally = STIX_SMOOI_TO_OOP(0));
printf ("REALLY NO MORE RUNNABLE PROCESS...\n");
break; break;
} }
carry_on_switching:
/* /*
else if (stix->processor->active == stix->idle_process) else if (stix->processor->active == stix->idle_process)
{ {

View File

@ -54,7 +54,7 @@
/* this is for gc debugging */ /* this is for gc debugging */
/*#define STIX_DEBUG_PROCESSOR*/ /*#define STIX_DEBUG_PROCESSOR*/
//#define STIX_DEBUG_GC_001 #define STIX_DEBUG_GC_001
/*#define STIX_DEBUG_GC_002*/ /*#define STIX_DEBUG_GC_002*/
#define STIX_DEBUG_COMP_001 #define STIX_DEBUG_COMP_001
/*#define STIX_DEBUG_COMP_002*/ /*#define STIX_DEBUG_COMP_002*/