| 182 | } |
| 183 | |
| 184 | bool emscripten_proxy_async(em_proxying_queue* q, |
| 185 | pthread_t target_thread, |
| 186 | void (*func)(void*), |
| 187 | void* arg) { |
| 188 | return do_proxy(q, target_thread, (task){func, NULL, arg}); |
| 189 | } |
| 190 | |
| 191 | enum ctx_kind { SYNC, CALLBACK }; |
| 192 |
no outgoing calls