[libj6] Move caps.h to cap_flags.h

This file is just the generated cap flag constants. Move it to not
collide with more capability code to be added.
This commit is contained in:
Justin C. Miller
2022-09-25 17:23:14 -07:00
parent a2b876825a
commit 7b8fd76af0
14 changed files with 15 additions and 15 deletions

View File

@@ -2,7 +2,7 @@
/// \file channel.h
/// Definition of channel objects and related functions
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include <util/bip_buffer.h>
#include <util/counted.h>
#include <util/spinlock.h>

View File

@@ -3,7 +3,7 @@
/// Definition of event kobject types
#include <stdint.h>
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include "objects/kobject.h"
#include "wait_queue.h"

View File

@@ -2,7 +2,7 @@
/// \file mailbox.h
/// Definition of mailbox kobject types
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include <util/counted.h>
#include <util/map.h>
#include <util/spinlock.h>

View File

@@ -2,7 +2,7 @@
/// \file process.h
/// Definition of process kobject types
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include <util/map.h>
#include <util/vector.h>

View File

@@ -2,7 +2,7 @@
/// \file system.h
/// Definition of kobject type representing the system
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include "objects/kobject.h"
namespace obj {

View File

@@ -2,7 +2,7 @@
/// \file thread.h
/// Definition of thread kobject types
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include <util/enum_bitfields.h>
#include <util/linked_list.h>
#include <util/spinlock.h>

View File

@@ -5,7 +5,7 @@
#include <stddef.h>
#include <stdint.h>
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include <util/vector.h>
#include <util/enum_bitfields.h>

View File

@@ -2,7 +2,7 @@
#include <stdint.h>
#include <arch/memory.h>
#include <j6/caps.h>
#include <j6/cap_flags.h>
#include <j6/errors.h>
#include <j6/types.h>
#include <util/counted.h>