1

rename Vector to vector

This commit is contained in:
2022-07-23 21:37:00 +02:00
parent c8db2c8878
commit c95361552a
8 changed files with 23 additions and 27 deletions

View File

@ -14,13 +14,14 @@
#include "kernel/threads/Thread.h"
#include "lib/SpinLock.h"
#include "user/lib/Vector.h"
#include <vector>
class Semaphore {
private:
Semaphore(const Semaphore& copy) = delete; // Verhindere Kopieren
// Queue fuer wartende Threads.
bse::Vector<unsigned int> wait_queue;
bse::vector<unsigned int> wait_queue;
SpinLock lock;
int counter;