Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 8 of 8) sorted by relevance

/devicemodel/core/
A Diothread.c76 if (pthread_create(&ioctx_x->tid, NULL, io_thread, ioctx_x) != 0) { in iothread_start()
83 pthread_setname_np(ioctx_x->tid, ioctx_x->name); in iothread_start()
86 ret = pthread_setaffinity_np(ioctx_x->tid, sizeof(cpuset_t), &(ioctx_x->cpuset)); in iothread_start()
158 if (ioctx_x->tid > 0) { in iothread_deinit()
162 pthread_kill(ioctx_x->tid, SIGCONT); in iothread_deinit()
163 pthread_join(ioctx_x->tid, &jval); in iothread_deinit()
221 ioctx_x->tid = 0; in iothread_create()
/devicemodel/include/
A Diothread.h27 pthread_t tid; member
A Dvga.h171 pthread_t tid; member
A Dioc.h794 pthread_t tid; /* Core thread id */ member
/devicemodel/hw/
A Dvdisplay_sdl.c85 pthread_t tid; member
651 if (vdpy.tid != pthread_self()) { in vdpy_surface_set()
829 if (vdpy.tid != pthread_self()) { in vdpy_surface_update()
877 if (vdpy.tid != pthread_self()) { in vdpy_cursor_define()
1237 err = pthread_create(&vdpy.tid, NULL, vdpy_sdl_display_thread, &vdpy); in vdpy_init()
1242 pthread_setname_np(vdpy.tid, "acrn_vdisplay"); in vdpy_init()
1280 pthread_join(vdpy.tid, NULL); in vdpy_deinit()
A Dblock_if.c104 pthread_t tid; member
273 be->tid = t; in blockif_dequeue()
295 be->tid = 0; in blockif_complete()
1798 pthread_kill(be->tid, SIGCONT); in blockif_cancel()
/devicemodel/hw/platform/
A Dioc.c1349 pthread_join(ioc->tid, NULL); in ioc_kill_workers()
1372 ioc_create_thread(const char *name, pthread_t *tid, in ioc_create_thread() argument
1375 if (pthread_create(tid, NULL, func, arg) != 0) { in ioc_create_thread()
1379 pthread_setname_np(*tid, name); in ioc_create_thread()
1662 if (ioc_create_thread(ioc->name, &ioc->tid, ioc_core_thread, in ioc_init()
/devicemodel/hw/pci/virtio/
A Dvirtio_gpu.c481 pthread_create(&gpu->vga.tid, NULL, virtio_gpu_vga_render, (void *)gpu); in virtio_gpu_reset()
1862 pthread_create(&gpu->vga.tid, NULL, virtio_gpu_vga_render, (void*)gpu); in virtio_gpu_init()
1883 pthread_join(gpu->vga.tid, NULL); in virtio_gpu_deinit()
2002 pthread_create(&gpu->vga.tid, NULL, in virtio_gpu_write()

Completed in 37 milliseconds