Files
RedBear-OS/recipes/tests/pthread/rwlock_trylock.c
T
vasilito b9874d0941 feat: USB storage read/write proof + full Red Bear OS tree sync
Add redbear-usb-storage-check in-guest binary that validates USB mass
storage read and write I/O: discovers /scheme/disk/ devices, writes a
test pattern to sector 2048, reads it back, verifies match, restores
original content. Updates test-usb-storage-qemu.sh with write-proof
verification step.

Includes all accumulated Red Bear OS work: kernel patches, relibc
patches, driver infrastructure, DRM/GPU, KDE recipes, firmware,
validation tooling, build system hardening, and documentation.
2026-05-03 23:03:24 +01:00

59 lines
1.8 KiB
C

#include "../test_helpers.h"
#include "common.h"
#include <assert.h>
#include <pthread.h>
#include <errno.h>
#include <time.h>
// Adapted from test_rwlock_try_write in rustc/library/std/sync/rwlock/tests.rs
int main(void) {
int status;
pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER;
pthread_rwlockattr_t attr;
status = pthread_rwlockattr_init(&attr);
ERROR_IF(pthread_rwlockattr_init, status, != 0);
// Call setpshared twice to check both constants work.
status = pthread_rwlockattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
ERROR_IF(pthread_rwlockattr_setpshared, status, != 0);
status = pthread_rwlockattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE);
ERROR_IF(pthread_rwlockattr_setpshared, status, != 0);
status = pthread_rwlock_init(&rwlock, &attr);
ERROR_IF(pthread_rwlock_init, status, != 0);
status = pthread_rwlockattr_destroy(&attr);
ERROR_IF(pthread_rwlockattr_destroy, status, != 0);
status = pthread_rwlock_rdlock(&rwlock);
ERROR_IF(pthread_rwlock_rdlock, status, != 0);
status = pthread_rwlock_trywrlock(&rwlock);
UNEXP_IF(pthread_rwlock_trywrlock, status, != EBUSY);
struct timespec ts;
clock_gettime(CLOCK_REALTIME, &ts);
ts.tv_nsec += 200 * 1000000;
status = pthread_rwlock_timedwrlock(&rwlock, &ts);
UNEXP_IF(pthread_rwlock_timedwrlock, status, != ETIMEDOUT);
status = pthread_rwlock_unlock(&rwlock);
ERROR_IF(pthread_rwlock_unlock, status, != 0);
status = pthread_rwlock_trywrlock(&rwlock);
ERROR_IF(pthread_rwlock_rdlock, status, != 0);
clock_gettime(CLOCK_REALTIME, &ts);
ts.tv_nsec += 200 * 1000000;
status = pthread_rwlock_timedrdlock(&rwlock, &ts);
UNEXP_IF(pthread_rwlock_timedrdlock, status, != ETIMEDOUT);
status = pthread_rwlock_destroy(&rwlock);
ERROR_IF(pthread_rwlock_destroy, status, != 0);
return 0;
}