mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Implemented setTaskPriority() and getTaskPriority() in Task HAL API Removed all other unimplemented functions in HAL and removed spawnTask() Replaced instances of pthread_t* with TASK typedef Removed unused HAL error constants and removed commented-out classes and functions in wpilibj's HALLibrary Changed Task class API to match the construction semantics of a std::thread Change-Id: I3bc951a3da90d24c5589fae4d1ca2bb60225c873
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2008. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
|
/*----------------------------------------------------------------------------*/
|
|
#pragma once
|
|
|
|
#include "../Errors.hpp"
|
|
#include "HAL/cpp/priority_mutex.h"
|
|
#include <stdint.h>
|
|
|
|
/**
|
|
* The Resource class is a convenient way to track allocated resources.
|
|
* It tracks them as indicies in the range [0 .. elements - 1].
|
|
* E.g. the library uses this to track hardware channel allocation.
|
|
*
|
|
* The Resource class does not allocate the hardware channels or other
|
|
* resources; it just tracks which indices were marked in use by
|
|
* Allocate and not yet freed by Free.
|
|
*/
|
|
class Resource
|
|
{
|
|
public:
|
|
Resource(const Resource&) = delete;
|
|
Resource& operator=(const Resource&) = delete;
|
|
virtual ~Resource();
|
|
static void CreateResourceObject(Resource **r, uint32_t elements);
|
|
uint32_t Allocate(const char *resourceDesc);
|
|
uint32_t Allocate(uint32_t index, const char *resourceDesc);
|
|
void Free(uint32_t index);
|
|
|
|
private:
|
|
explicit Resource(uint32_t size);
|
|
|
|
bool *m_isAllocated;
|
|
priority_recursive_mutex m_allocateLock;
|
|
uint32_t m_size;
|
|
|
|
static priority_recursive_mutex m_createLock;
|
|
};
|
|
|