Home | History | Annotate | Download | only in skc

Lines Matching refs:runtime

87   // FIXME -- consider adding a backpointer to the runtime or other
130 skc_scheduler_create(struct skc_runtime * const runtime, skc_uint const size)
134 skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,sizeof(*scheduler));
141 skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,(sizeof(*scheduler->extent) * size));
144 skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,sizeof(*scheduler->available.indices) * size);
149 skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,sizeof(*scheduler->available.indices) * (size + 1));
162 skc_scheduler_dispose(struct skc_runtime * const runtime,
166 skc_runtime_host_perm_free(runtime,scheduler->waiting.indices);
167 skc_runtime_host_perm_free(runtime,scheduler->available.indices);
168 skc_runtime_host_perm_free(runtime,scheduler->extent);
174 skc_runtime_host_perm_free(runtime,scheduler);