• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022-2022 Huawei Technologies Co., Ltd. All rights reserved.
3  *
4  * UniProton is licensed under Mulan PSL v2.
5  * You can use this software according to the terms and conditions of the Mulan PSL v2.
6  * You may obtain a copy of Mulan PSL v2 at:
7  *          http://license.coscl.org.cn/MulanPSL2
8  * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
9  * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
10  * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
11  * See the Mulan PSL v2 for more details.
12  * Create: 2022-11-15
13  * Description: pthread cancel功能实现
14  */
15 #include "pthread.h"
16 #include "prt_posix_internal.h"
17 
pthread_cancel(pthread_t thread)18 int pthread_cancel(pthread_t thread)
19 {
20     return PRT_PthreadCancel((TskHandle)thread);
21 }
22 
pthread_testcancel(void)23 void pthread_testcancel(void)
24 {
25     PRT_PthreadTestCancel();
26 }
27 
pthread_setcancelstate(int state,int * oldstate)28 int pthread_setcancelstate(int state, int *oldstate)
29 {
30     return PRT_PthreadSetCancelState(state, oldstate);
31 }
32 
pthread_setcanceltype(int type,int * oldType)33 int pthread_setcanceltype(int type, int *oldType)
34 {
35     return PRT_PthreadSetCancelType(type, oldType);
36 }
37