line 9 on page 140:
set OMP_SCHEDULE="dynamic"
contradicts with the format allowed for the environment variable value (line 16, on p.140). Quotes should be omitted for DOS-style setting because they become part of the variable value. Correct example would be:
set OMP_SCHEDULE=dynamic
- Andrey
