Add initial pass of syscall API kobjects
This commit is contained in:
15
src/kernel/objects/event.h
Normal file
15
src/kernel/objects/event.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
/// \file event.h
|
||||
/// Definition of event kobject types
|
||||
|
||||
#include "objects/kobject.h"
|
||||
|
||||
class event :
|
||||
public kobject
|
||||
{
|
||||
public:
|
||||
static constexpr type type_id = type::event;
|
||||
|
||||
event() :
|
||||
kobject(type_id) {}
|
||||
};
|
||||
Reference in New Issue
Block a user