Working i386 paging and liballoc
This commit is contained in:
1
kernel/sync/.gitignore
vendored
Normal file
1
kernel/sync/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
5
kernel/sync/make.src
Normal file
5
kernel/sync/make.src
Normal file
@@ -0,0 +1,5 @@
|
||||
dir_sync1 := $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
|
||||
|
||||
c_files += $(dir_sync1)/spinlock.c
|
||||
|
||||
o_files += $(dir_sync1)/spinlock.o
|
||||
57
kernel/sync/spinlock.c
Normal file
57
kernel/sync/spinlock.c
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
Copyright 2025 Kamil Kowalczyk
|
||||
|
||||
Redistribution and use in source and binary forms, with or
|
||||
without modification, are permitted provided that the following
|
||||
conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
“AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
||||
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <libk/stdatomic.h>
|
||||
#include <libk/string.h>
|
||||
#include <sync/spinlock.h>
|
||||
#include <sys/cpu.h>
|
||||
|
||||
void sl_init(struct spinlock *sl, const char *name) {
|
||||
if (strlen(name) > SPINLOCK_NAME_MAX) {
|
||||
return;
|
||||
}
|
||||
|
||||
strncpy(sl->name, name, SPINLOCK_NAME_MAX);
|
||||
sl->flag = ATOMIC_FLAG_INIT;
|
||||
}
|
||||
|
||||
void sl_lock(struct spinlock *sl) {
|
||||
intr_save();
|
||||
while (atomic_flag_test_and_set_explicit(&sl->flag, memory_order_acquire)) {
|
||||
cpu_relax();
|
||||
}
|
||||
}
|
||||
|
||||
void sl_unlock(struct spinlock *sl) {
|
||||
atomic_flag_clear_explicit(&sl->flag, memory_order_release);
|
||||
|
||||
intr_restore();
|
||||
}
|
||||
48
kernel/sync/spinlock.h
Normal file
48
kernel/sync/spinlock.h
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
Copyright 2025 Kamil Kowalczyk
|
||||
|
||||
Redistribution and use in source and binary forms, with or
|
||||
without modification, are permitted provided that the following
|
||||
conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
“AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
||||
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef _SYNC_SPINLOCK_H
|
||||
#define _SYNC_SPINLOCK_H
|
||||
|
||||
#include <libk/stdatomic.h>
|
||||
|
||||
#define SPINLOCK_NAME_MAX 32
|
||||
|
||||
struct spinlock {
|
||||
atomic_flag flag;
|
||||
char name[SPINLOCK_NAME_MAX];
|
||||
};
|
||||
|
||||
void sl_init(struct spinlock *sl, const char *name);
|
||||
void sl_lock(struct spinlock *sl);
|
||||
void sl_unlock(struct spinlock *sl);
|
||||
|
||||
#endif // _SYNC_SPINLOCK_H
|
||||
Reference in New Issue
Block a user