Searched refs:tid (Results 1 – 8 of 8) sorted by relevance
| /devicemodel/core/ |
| A D | iothread.c | 76 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 D | iothread.h | 27 pthread_t tid; member
|
| A D | vga.h | 171 pthread_t tid; member
|
| A D | ioc.h | 794 pthread_t tid; /* Core thread id */ member
|
| /devicemodel/hw/ |
| A D | vdisplay_sdl.c | 85 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 D | block_if.c | 104 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 D | ioc.c | 1349 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 D | virtio_gpu.c | 481 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