Paran Lee

Results 30 issues of Paran Lee

My Clang version on x86_64 WSL2 ubuntu 20.04 ``` ~/uftrace$ uname -r 5.10.16.3-microsoft-standard-WSL2 ~/uftrace$ clang --version clang version 10.0.0-4ubuntu1 Target: x86_64-pc-linux-gnu Thread model: posix InstalledDir: /usr/bin ``` Linker show `-fPIE`...

ossca

There are infering to improve the uftrace project codes from Facebook Infer. **RPI 4 (400 model) aarch64 Ubuntu 22.04** ``` ~/uftrace$ uname -a Linux paranlee-desktop 5.15.0-1013-raspi #15-Ubuntu SMP PREEMPT Mon...

ossca

While we are reviewing the uftrace code, or while using uftrace, If someone have any good content to organize or share, we can post it in the link below. -...

ossca

I build with some patch on qemu. because I want to build `-pg` and debugging options! ``` cd qemu/build ../configure --disable-werror --enable-debug --extra-cflags="-pg -ggdb" --target-list=riscv64-softmmu,riscv64-linux-user,aarch64-softmmu,aarch64-linux-user make -j16 ``` remove `__safestack_unsafe_stack_ptr`....

ossca

## Mutitrheading Test Code ```py #!/usr/bin/python3 import _thread import time a_lock = _thread.allocate_lock() g_count = 0 # Define a function for the thread def print_time( threadName, delay): global g_count count...

bug
critical
language support

If **Apple** were to making an next **Vision Pro**, they would have no choice but to use `uftrace` for Verifying the deterministic software behavior and performance measurement. I found the...

I would like to add some explanations and examples of tests/runtest.py usage printing. `runtest.py` usage is hard to first-time contributor. ``` usage: runtest.py [-h] [-f FLAGS] [-O OPTS] [-p] [-i]...

We think uftrace is a mature enough project for a 10-year, and a version that's too small might give the wrong impression that it's a prototype or alpha, which might...

I tested in ubuntu 23.10 x86_64 Virtual Machine. ``` $ uname -a Linux paran-virtual-machine 6.3.0-7-generic #7-Ubuntu SMP PREEMPT_DYNAMIC Thu Jun 8 16:02:30 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux $ cat...

tests

C11 Standard `thrd` - https://en.cppreference.com/w/c/thread `thrd`thread support in the C11 standard. Since the Linux kernel is also being refactored to C11, How we think about the proposal to refactor `pthread_*`...