Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ Is placing `var` from `support/race-condition/c/race_condition_tls.c` in the TLS

## Question Answers

- No, because the race condition remains.
It just doesn't manifest itself anymore
- No, because the race condition remains. It just doesn't manifest itself anymore
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We usually write one sentence per line, text is easier to review like this. But let's do this ugly fix until we fully fix the builder.


+ No, because the threads now access different variables, not the same one

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Question Text

How many copies of the `var` variable from `support/race-condition/c/race_condition_tls.c` are there after each thread has modified it at leas once?
How many copies of the `var` variable from `support/race-condition/c/race_condition_tls.c` are there after each thread has modified it at least once?

## Question Answers

Expand Down
Loading