Files
KirkOS/user/include/mlibc/tests/posix/flockfile.c
T
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

36 lines
651 B
C

#include <assert.h>
#include <time.h>
#include <pthread.h>
#include <stdio.h>
#include <unistd.h>
static void *worker(void *arg) {
(void)arg;
flockfile(stdout);
fputs_unlocked("hello from worker", stdout);
funlockfile(stdout);
return NULL;
}
int main() {
// Check that recursive locking works.
assert(!ftrylockfile(stdout));
flockfile(stdout);
flockfile(stdout);
funlockfile(stdout);
funlockfile(stdout);
funlockfile(stdout);
assert(!ftrylockfile(stdout));
pthread_t thread;
int ret = pthread_create(&thread, NULL, &worker, NULL);
assert(!ret);
sleep(1);
funlockfile(stdout);
assert(!pthread_join(thread, NULL));
return 0;
}