diff --git a/README.adoc b/README.adoc index ba385d9..5e19bec 100644 --- a/README.adoc +++ b/README.adoc @@ -12636,7 +12636,7 @@ if (event->isExitEvent()) { return event; .... -And at long, we can guess without reading the code that `Event_71` is comes from the SE implementation of the exit syscall, so let's just confirm, the trace contains: +And at last, we can guess without reading the code that `Event_71` is comes from the SE implementation of the exit syscall, so let's just confirm, the trace contains: .... exitSimLoop() at sim_events.cc:97 0x5555594746e0 @@ -14140,6 +14140,7 @@ These are good targets for <> TODO also consider the following: +* http://www.cs.virginia.edu/stream/ref.html STREAM memory bandwidth benchmarks. * https://github.com/kozyraki/stamp transactional memory benchmarks ==== Dhrystone diff --git a/userland/posix/pthread_count.c b/userland/posix/pthread_count.c index 4bc3e81..fe01331 100644 --- a/userland/posix/pthread_count.c +++ b/userland/posix/pthread_count.c @@ -1,4 +1,4 @@ -/* count to infinity in n threads. +/* count to infinity in n threads sleeping one second between each count. * * https://cirosantilli.com/linux-kernel-module-cheat#pthreads *