1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

SystemServer+kcov-example: Make /dev/kcov0 available again

Apparently this device entry got lost while converting to DevTmpFS.
This commit is contained in:
Ben Wiederhake 2021-11-20 23:50:16 +01:00 committed by Andreas Kling
parent 1100dd4a72
commit 253d62cb18
2 changed files with 5 additions and 1 deletions

View file

@ -18,7 +18,7 @@ int main(void)
{
constexpr size_t num_entries = 1024 * 100;
int fd = open("/dev/kcov", O_RDWR);
int fd = open("/dev/kcov0", O_RDWR);
if (fd == -1) {
perror("open");
return 1;