summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-24 17:14:24 +0200
committerLinus Groh <mail@linusgroh.de>2023-02-24 20:35:45 +0100
commit8f3c343b88dcafabd0f548a0e434dbb22d7a119a (patch)
tree14e6257bda3bd0106a0b2d617273a7c2106240a2 /Userland/Libraries
parente7142c482aea3c4bbce3879c0a1131f38f4ab0e6 (diff)
downloadserenity-8f3c343b88dcafabd0f548a0e434dbb22d7a119a.zip
Kernel+Userland: Unify declarations for KCOV in Kernel/API/kcov.h
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibC/sys/kcov.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/Userland/Libraries/LibC/sys/kcov.h b/Userland/Libraries/LibC/sys/kcov.h
deleted file mode 100644
index f6568a47d7..0000000000
--- a/Userland/Libraries/LibC/sys/kcov.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * Copyright (c) 2021, Patrick Meyer <git@the-space.agency>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
-
-#pragma once
-
-#include <AK/Types.h>
-
-// Note: These need to be kept in sync with Kernel/Devices/KCOVInstance.h
-typedef volatile u64 kcov_pc_t;
-#define KCOV_ENTRY_SIZE sizeof(kcov_pc_t)