From 0f30d227497418c6d3bef7d52244407e30454504 Mon Sep 17 00:00:00 2001 From: Kacper Date: Mon, 22 Dec 2025 23:27:56 +0100 Subject: Added c11 threads, fixed some locks and add *_unlocked functions --- bin/Kbuild | 2 ++ bin/echo/qemu_echo_20251216-155008_248.core | Bin 8495104 -> 0 bytes bin/echo/qemu_echo_20251216-155146_265.core | Bin 8495104 -> 0 bytes bin/echo/qemu_echo_20251216-155344_268.core | Bin 8495104 -> 0 bytes bin/echo/qemu_echo_20251216-155417_274.core | Bin 8495104 -> 0 bytes bin/playground/Kbuild | 4 ++++ bin/playground/main.c | 6 ++++++ 7 files changed, 12 insertions(+) delete mode 100644 bin/echo/qemu_echo_20251216-155008_248.core delete mode 100644 bin/echo/qemu_echo_20251216-155146_265.core delete mode 100644 bin/echo/qemu_echo_20251216-155344_268.core delete mode 100644 bin/echo/qemu_echo_20251216-155417_274.core create mode 100644 bin/playground/Kbuild create mode 100644 bin/playground/main.c (limited to 'bin') diff --git a/bin/Kbuild b/bin/Kbuild index 03c196c5..d33a8bbe 100644 --- a/bin/Kbuild +++ b/bin/Kbuild @@ -1,3 +1,5 @@ +obj-y += playground/ + obj-y += basename/ obj-y += clear/ obj-y += echo/ diff --git a/bin/echo/qemu_echo_20251216-155008_248.core b/bin/echo/qemu_echo_20251216-155008_248.core deleted file mode 100644 index c6bc9642..00000000 Binary files a/bin/echo/qemu_echo_20251216-155008_248.core and /dev/null differ diff --git a/bin/echo/qemu_echo_20251216-155146_265.core b/bin/echo/qemu_echo_20251216-155146_265.core deleted file mode 100644 index 3c9a87a1..00000000 Binary files a/bin/echo/qemu_echo_20251216-155146_265.core and /dev/null differ diff --git a/bin/echo/qemu_echo_20251216-155344_268.core b/bin/echo/qemu_echo_20251216-155344_268.core deleted file mode 100644 index 844a70ff..00000000 Binary files a/bin/echo/qemu_echo_20251216-155344_268.core and /dev/null differ diff --git a/bin/echo/qemu_echo_20251216-155417_274.core b/bin/echo/qemu_echo_20251216-155417_274.core deleted file mode 100644 index a9a1df54..00000000 Binary files a/bin/echo/qemu_echo_20251216-155417_274.core and /dev/null differ diff --git a/bin/playground/Kbuild b/bin/playground/Kbuild new file mode 100644 index 00000000..59fb5886 --- /dev/null +++ b/bin/playground/Kbuild @@ -0,0 +1,4 @@ +bin-y := main +obj-y := main.o + +libs-y := $(srctree)/lib/libc/libc.a diff --git a/bin/playground/main.c b/bin/playground/main.c new file mode 100644 index 00000000..15f3992a --- /dev/null +++ b/bin/playground/main.c @@ -0,0 +1,6 @@ +#include + +int main(void) +{ + return 0; +} -- cgit v1.2.3