---
title: 创建poll线程
description: "```"
url: https://www.hikunpeng.com/document/detail/zh/kunpengboostkithistory/252RC1/accel/kunpengaccel_17_0091.html
sourcePath: /source/zh/kunpengboostkithistory/252RC1/accel/kunpengaccel_17_0091.html
indexId: 48b9221b919421ccb6495d179abc972aa9fc7a30b86575c0eee300bbdf833e5872
---
# 创建poll线程

```
static void  *_digest_async_poll_thread(void *data)
{
while (1) {
ret = wcrypto_digest_poll(q, 1);
if (ret < 0) {
break;
}
}
return NULL;
}
pthread_create(&thrds, NULL,_digest_async_poll_thread, &data);
```
