blob: 428b2908541d3a2988fc81b762556ee2369c797b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright 2023 Red Hat
*/
#ifndef UDS_THREAD_DEVICE_H
#define UDS_THREAD_DEVICE_H
#include "thread-registry.h"
void uds_register_thread_device_id(struct registered_thread *new_thread,
unsigned int *id_ptr);
void uds_unregister_thread_device_id(void);
int uds_get_thread_device_id(void);
void uds_initialize_thread_device_registry(void);
#endif /* UDS_THREAD_DEVICE_H */
|