Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
BS::this_thread Namespace Reference

A namespace used to obtain information about the current thread. More...

Classes

class  thread_info_index
 A helper class to store information about the index of the current thread. More...
 
class  thread_info_pool
 A helper class to store information about the thread pool that owns the current thread. More...
 

Typedefs

using optional_index = std::optional< size_t >
 A type returned by BS::this_thread::get_index() which can optionally contain the index of a thread, if that thread belongs to a BS::thread_pool. Otherwise, it will contain no value.
 
using optional_pool = std::optional< thread_pool * >
 A type returned by BS::this_thread::get_pool() which can optionally contain the pointer to the pool that owns a thread, if that thread belongs to a BS::thread_pool. Otherwise, it will contain no value.
 

Variables

thread_local thread_info_index get_index
 A thread_local object used to obtain information about the index of the current thread.
 
thread_local thread_info_pool get_pool
 A thread_local object used to obtain information about the thread pool that owns the current thread.
 

Detailed Description

A namespace used to obtain information about the current thread.