aboutsummaryrefslogtreecommitdiff
path: root/kernel/include
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-12-30 12:40:19 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2024-12-30 12:40:19 -0500
commitbc0153eb0a05725c9ccfd7a18ca446eea1fd7477 (patch)
tree99cf9e12b5d8e5584149f9ed6b407cea0141e09b /kernel/include
parent0044ce92eac84c03c2e00227f9e52d22fb5b3160 (diff)
kernel: Add halt()
Diffstat (limited to 'kernel/include')
-rw-r--r--kernel/include/kernel/halt.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/kernel/include/kernel/halt.h b/kernel/include/kernel/halt.h
new file mode 100644
index 0000000..5735a06
--- /dev/null
+++ b/kernel/include/kernel/halt.h
@@ -0,0 +1,24 @@
+/*
+ * CMOS
+ * Copyright (C) 2024 Raghuram Subramani <raghus2247@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __kernel_halt_h
+#define __kernel_halt_h
+
+void halt(void);
+
+#endif