You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
357 B
C++
17 lines
357 B
C++
#include "./semaphore.h"
|
|
|
|
#include "../interrupt/guard.h"
|
|
#include "../thread/thread.h"
|
|
|
|
Semaphore::Semaphore(unsigned c) { (void)c; }
|
|
|
|
Thread **Semaphore::thread_link(Thread &obj, unsigned link_index) {
|
|
(void)obj;
|
|
(void)link_index;
|
|
return nullptr;
|
|
}
|
|
|
|
void Semaphore::p(Vault &vault) { (void)vault; }
|
|
|
|
void Semaphore::v(Vault &vault) { (void)vault; }
|