update pthread_cancel.patch.

Signed-off-by: dongzhengkuan <dongzhengkuan@huawei.com>
This commit is contained in:
dongzhengkuan 2023-07-06 02:52:43 +00:00 committed by Gitee
parent d5961f92a8
commit 339ad4786c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -9,3 +9,5 @@ _cupsThreadCancel(_cups_thread_t thread)/* I - Thread ID */
- pthread_cancel(thread); - pthread_cancel(thread);
+ pthread_kill(thread, 10); + pthread_kill(thread, 10);
} }