this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

libdispatch seems to be working again

+4 -4
+4 -4
src/kernel/emulation/linux/bsdthread/workq_kernreturn.c
··· 68 68 #ifndef VARIANT_DYLD 69 69 struct wq_kevent_data* wq_event = NULL; 70 70 71 - __simple_printf("workq_kernreturn: 0x%x, %p, 0x%x, 0x%x\n", options, item, affinity, prio); 71 + // __simple_printf("workq_kernreturn: 0x%x, %p, 0x%x, 0x%x\n", options, item, affinity, prio); 72 72 73 73 // item is only used with WQOPS_QUEUE_ADD 74 74 switch (options) ··· 143 143 thread_self = thread_self_trap(); 144 144 stack = __darling_thread_get_stack(); 145 145 146 - __simple_printf("Thread %d woken up, prio=%d\n", thread_self, me.flags & WQ_FLAG_THREAD_PRIOMASK); 146 + // __simple_printf("Thread %d woken up, prio=%d\n", thread_self, me.flags & WQ_FLAG_THREAD_PRIOMASK); 147 147 148 148 if (me.event) 149 149 wq_event_pending = me.event; ··· 201 201 if (wq_event != NULL) 202 202 flags |= WQ_FLAG_THREAD_KEVENT; 203 203 204 - __simple_printf("Thread requested with prio %d\n", prio & WQ_FLAG_THREAD_PRIOMASK); 204 + // __simple_printf("Thread requested with prio %d\n", prio & WQ_FLAG_THREAD_PRIOMASK); 205 205 206 206 for (i = 0; i < affinity; i++) 207 207 { ··· 234 234 235 235 sem_up(&workq_parked_lock); 236 236 237 - __simple_printf("Spawning a new thread, nevents=%d\n", (wq_event != NULL) ? wq_event->nevents : -1); 237 + // __simple_printf("Spawning a new thread, nevents=%d\n", (wq_event != NULL) ? wq_event->nevents : -1); 238 238 wq_event_pending = wq_event; 239 239 240 240 __darling_thread_create(512*1024, pthread_obj_size, wqueue_entry_point, 0,