blob: 98acdf5c87e0a74df71d6f229a82858d9d7e42a7 [file] [log] [blame]
Xinyu Zhang3ea91b92021-09-22 14:54:29 +08001/*
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
14extern "C" {
15#endif
16
17/* Get NSID with the name of thread */
18int32_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__ */