toaruos
toaruos copied to clipboard
A completely-from-scratch hobby operating system: bootloader, kernel, drivers, C library, and userspace including a composited graphical UI, dynamic linker, syntax-highlighting text editor, network st...
I try to implement a very simple video player based on ffmpeg, so I do these things below: 1. In order to port ffmpeg to toaruos, I compiled SDL1.2 with...
1. If try to run these code below: #include #include void *func(void *arg) { while (1) { printf("A"); } return NULL; } int main(void) { pthread_t thread; pthread_create(&thread, NULL, func,...
The libc's `stdio` implementation is not thread-safe. This is a deficiency that has been known since it was first written, and one that is starting to bite us in user...