Xinyu Zhang | 3ea91b9 | 2021-09-22 14:54:29 +0800 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2021, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | * | ||||
6 | */ | ||||
7 | |||||
8 | #ifndef __TFM_NSID_MAP_TABLE_H__ | ||||
9 | #define __TFM_NSID_MAP_TABLE_H__ | ||||
10 | |||||
11 | #include <stdint.h> | ||||
12 | |||||
13 | #ifdef __cplusplus | ||||
14 | extern "C" { | ||||
15 | #endif | ||||
16 | |||||
17 | /* Get NSID with the name of thread */ | ||||
18 | int32_t nsid_mgr_get_thread_nsid(const char* t_name); | ||||
19 | |||||
20 | #ifdef __cplusplus | ||||
21 | } | ||||
22 | #endif | ||||
23 | |||||
24 | #endif /* __TFM_NSID_MAP_TABLE_H__ */ |