mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-09 06:19:19 +00:00
Implement std::atomic and remove the old implementation Atomic and rename vector.hpp to vector
This commit is contained in:
@ -20,10 +20,10 @@
|
||||
|
||||
#include <types.h>
|
||||
#include <filesystem.hpp>
|
||||
#include <vector.hpp>
|
||||
#include <memory.hpp>
|
||||
#include <atomic.hpp>
|
||||
#include <lock.hpp>
|
||||
#include <vector>
|
||||
#include <atomic>
|
||||
|
||||
namespace InterProcessCommunication
|
||||
{
|
||||
@ -59,7 +59,7 @@ namespace InterProcessCommunication
|
||||
VirtualFileSystem::Node *Node;
|
||||
void *Buffer;
|
||||
long Length;
|
||||
Atomic<bool> Listening;
|
||||
std::atomic_bool Listening;
|
||||
};
|
||||
|
||||
class IPC
|
||||
|
Reference in New Issue
Block a user