diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-05-12 18:01:13 +0200 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2022-05-16 21:52:22 +0000 |
commit | 6acc05ed310fcd81bea9288df8c4cb4471a8bbbe (patch) | |
tree | d5a360b1cb9d34d75ac279ce18e474cc64bbc9c4 /src/include/thread.h | |
parent | 94223c41657fa604ff75ce2790504765c8a04713 (diff) |
rules.h: Use more consistent naming
Use 'ENV' consistently and drop the redundant 'STAGE' in the naming.
Change-Id: I51f2a7e70eefad12aa214e92f23e5fd2edf46698
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64296
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/include/thread.h')
-rw-r--r-- | src/include/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/thread.h b/src/include/thread.h index f414db0281..059ba52a2c 100644 --- a/src/include/thread.h +++ b/src/include/thread.h @@ -37,7 +37,7 @@ int thread_run_until(struct thread_handle *handle, enum cb_err (*func)(void *), /* Waits until the thread has terminated and returns the error code */ enum cb_err thread_join(struct thread_handle *handle); -#if ENV_STAGE_SUPPORTS_COOP +#if ENV_SUPPORTS_COOP struct thread { int id; |