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

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