| commit | f6eb86fe6fa7b77e6d3e2f001202aa7fcf875ee8 | [log] [tgz] |
|---|---|---|
| author | Chris Friedt <cfriedt@tenstorrent.com> | Wed Oct 29 12:57:39 2025 -0400 |
| committer | Chris Friedt <chrisfriedt@gmail.com> | Sat Nov 01 08:39:26 2025 -0400 |
| tree | 7f23358dc0ebf12c7c61a407187e537d3d251e56 | |
| parent | 63868e4301fe128ab7eb063be6bc21f435b872c9 [diff] |
samples: philosophers: rename 'fork' to avoid POSIX conflict There is a macro, `fork()`, inside of the philosophers example that conflicts with the POSIX `fork()` function. Since it is customary to avoid using reserved names, adjust the sample so that the macro in question is called `philosopher_fork()`. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>