changed to use AC_LINK_IFELSE() when checking for some __builtin_memxxx functions.

started adding the #limited modifier for class definition
This commit is contained in:
hyunghwan.chung
2017-04-30 04:50:33 +00:00
parent e2a7646b75
commit 2a6206cc80
4 changed files with 107 additions and 15 deletions

View File

@ -1,5 +1,5 @@
class(#pointer) Process(Object)
class(#pointer,#limited) Process(Object)
{
var initial_context, current_context, state, sp, prev, next, sem, perr.
@ -345,7 +345,7 @@ class SemaphoreHeap(Object)
}
}
class ProcessScheduler(Object)
class(#limited) ProcessScheduler(Object)
{
var tally, active, runnable_head, runnable_tail, sem_heap.