Results 23 issues of gftea

Concurrency != Parallelism to avoid confusion, use cooperative multitasking (async) and preemptive multitasking (threads) threads are not necessary run in parallel.

For me on WSL2, I receive the events in below order ``` RECEIVED: Event { events: 1, epoll_data: 1 } RECEIVED: Event { events: 1, epoll_data: 2 } RECEIVED: Event...

wording to try distinguishing the address and the value stored in the address

the order of the stack is inconsistent with initial example

https://cfsamson.gitbook.io/green-threads-explained-in-200-lines-of-rust/the-stack Question about below > As you know now, the %rsp is our stack pointer. Now as you see we need to put the stack pointer in a position which...

In the chapter https://cfsamson.gitbook.io/green-threads-explained-in-200-lines-of-rust/an-example-we-can-build-upon Can you help explain why `in(reg) new` is needed after `ret` ?

Hi, How to gives control of the child process to the interactive user (the human at the keyboard) like the interact() method in pexpect?

enhancement
help wanted

Below line in dockerfile return error, the path doesn't exist. ` # TODO Remove when STP is fixed RUN /bin/bash -c 'echo "export LD_LIBRARY_PATH=$(cd ${BASE}/metaSMT-*-deps/stp-git-basic/lib/ && pwd):$LD_LIBRARY_PATH" >> /home/klee/.bashrc' `