This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via d8c5c508c5283f0bc28c81b92b8e253d6716cc35 (commit)
via 4be12632b66d2c4d83cc93703aa1fc33a5e95e3d (commit)
from 76e04eac072c41936ed4ce088a1903ff62af533a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d8c5c508c5283f0bc28c81b92b8e253d6716cc35
Merge: 76e04ea 4be1263
Author: Lawrence Sebald <ljs...@us...>
Date: Mon Aug 28 00:12:57 2023 -0400
Merge pull request #280 from KallistiOS/add-more-missing-includes
Add missing includes to a few more more files
commit 4be12632b66d2c4d83cc93703aa1fc33a5e95e3d
Author: Lawrence Sebald <ljs...@us...>
Date: Mon Aug 28 00:11:18 2023 -0400
Add missing includes to a few more more files.
-----------------------------------------------------------------------
Summary of changes:
kernel/arch/dreamcast/hardware/modem/mdata.c | 3 ++-
kernel/arch/dreamcast/hardware/network/lan_adapter.c | 2 +-
kernel/arch/dreamcast/hardware/spudma.c | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/kernel/arch/dreamcast/hardware/modem/mdata.c b/kernel/arch/dreamcast/hardware/modem/mdata.c
index f576627..35d7f03 100644
--- a/kernel/arch/dreamcast/hardware/modem/mdata.c
+++ b/kernel/arch/dreamcast/hardware/modem/mdata.c
@@ -1,7 +1,7 @@
/* KallistiOS ##version##
mdata.c
- Copyright (C)2002, 2004 Nick Kochakian
+ Copyright (C) 2002, 2004 Nick Kochakian
Distributed under the terms of the KOS license.
*/
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <string.h>
#include <kos/dbglog.h>
+#include <kos/thread.h>
#include <assert.h>
#include <dc/modem/modem.h>
#include "mintern.h"
diff --git a/kernel/arch/dreamcast/hardware/network/lan_adapter.c b/kernel/arch/dreamcast/hardware/network/lan_adapter.c
index 73ced6e..53bdca2 100644
--- a/kernel/arch/dreamcast/hardware/network/lan_adapter.c
+++ b/kernel/arch/dreamcast/hardware/network/lan_adapter.c
@@ -16,6 +16,7 @@
#include <dc/net/lan_adapter.h>
#include <arch/irq.h>
#include <kos/net.h>
+#include <kos/thread.h>
/*
@@ -780,4 +781,3 @@ int la_shutdown(void) {
la_if_shutdown(&la_if);
return 0;
}
-
diff --git a/kernel/arch/dreamcast/hardware/spudma.c b/kernel/arch/dreamcast/hardware/spudma.c
index d0d3c13..a1d92f1 100644
--- a/kernel/arch/dreamcast/hardware/spudma.c
+++ b/kernel/arch/dreamcast/hardware/spudma.c
@@ -1,7 +1,7 @@
/* KallistiOS ##version##
spudma.c
- Copyright (C)2001,2002,2004 Megan Potter
+ Copyright (C) 2001, 2002, 2004 Megan Potter
*/
#include <assert.h>
@@ -10,6 +10,7 @@
#include <dc/spu.h>
#include <dc/asic.h>
#include <kos/sem.h>
+#include <kos/thread.h>
/* testing */
#define ASIC_IRQ ASIC_IRQB
@@ -283,4 +284,3 @@ void spu_dma_shutdown(void) {
dma_disable(i);
}
}
-
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|