Skip to content

Commit

Permalink
Formats code
Browse files Browse the repository at this point in the history
  • Loading branch information
HAKarlsson committed May 16, 2024
1 parent 34caef8 commit 6f64e94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kernel/inc/interrupt.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once
#include <stdint.h>
#include <proc.h>
#include <stdint.h>

proc_t *interrupt_handler(proc_t *proc, uint64_t mcause, uint64_t mtval);
4 changes: 3 additions & 1 deletion kernel/src/smp/taslock.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#include "smp/taslock.h"
#include <stdbool.h>

#include "kernel.h"

#include <stdbool.h>

void taslock_init(taslock_t *l)
{
l->lock = 0;
Expand Down

0 comments on commit 6f64e94

Please sign in to comment.