Organize system calls

* syscalls should all return j6_status_t now
* syscalls are grouped by category in name as well as in files
This commit is contained in:
Justin C. Miller
2019-07-05 22:27:16 -07:00
parent 19cd01ef8d
commit b056d95920
16 changed files with 149 additions and 144 deletions

View File

@@ -8,8 +8,6 @@ class event :
public kobject
{
public:
static constexpr type type_id = type::event;
event() :
kobject(type_id) {}
kobject(type::event) {}
};