diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-22 23:27:56 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-22 23:30:32 +0100 |
| commit | 0f30d227497418c6d3bef7d52244407e30454504 (patch) | |
| tree | 0e1ac19623d3268380cf74328cdf643648a2f43c /bin | |
| parent | 90dad97fc07f049383903a166631e2c257f9b8c1 (diff) | |
Added c11 threads, fixed some locks and add *_unlocked functions
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/Kbuild | 2 | ||||
| -rw-r--r-- | bin/echo/qemu_echo_20251216-155008_248.core | bin | 8495104 -> 0 bytes | |||
| -rw-r--r-- | bin/echo/qemu_echo_20251216-155146_265.core | bin | 8495104 -> 0 bytes | |||
| -rw-r--r-- | bin/echo/qemu_echo_20251216-155344_268.core | bin | 8495104 -> 0 bytes | |||
| -rw-r--r-- | bin/echo/qemu_echo_20251216-155417_274.core | bin | 8495104 -> 0 bytes | |||
| -rw-r--r-- | bin/playground/Kbuild | 4 | ||||
| -rw-r--r-- | bin/playground/main.c | 6 |
7 files changed, 12 insertions, 0 deletions
@@ -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 Binary files differdeleted file mode 100644 index c6bc9642..00000000 --- a/bin/echo/qemu_echo_20251216-155008_248.core +++ /dev/null diff --git a/bin/echo/qemu_echo_20251216-155146_265.core b/bin/echo/qemu_echo_20251216-155146_265.core Binary files differdeleted file mode 100644 index 3c9a87a1..00000000 --- a/bin/echo/qemu_echo_20251216-155146_265.core +++ /dev/null diff --git a/bin/echo/qemu_echo_20251216-155344_268.core b/bin/echo/qemu_echo_20251216-155344_268.core Binary files differdeleted file mode 100644 index 844a70ff..00000000 --- a/bin/echo/qemu_echo_20251216-155344_268.core +++ /dev/null diff --git a/bin/echo/qemu_echo_20251216-155417_274.core b/bin/echo/qemu_echo_20251216-155417_274.core Binary files differdeleted file mode 100644 index a9a1df54..00000000 --- a/bin/echo/qemu_echo_20251216-155417_274.core +++ /dev/null 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 <sched.h> + +int main(void) +{ + return 0; +} |
