Changeset f35749e in mainline for kernel/generic/src/proc/thread.c
- Timestamp:
- 2025-02-28T23:38:26Z (4 days ago)
- Branches:
- master
- Children:
- 8300c72
- Parents:
- 4285f384
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/thread.c
r4285f384 rf35749e 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2010 Jakub Jermar 3 * Copyright (c) 2018 Jiri Svoboda4 4 * All rights reserved. 5 5 * … … 338 338 irq_spinlock_unlock(&thread->task->lock, false); 339 339 340 assert((atomic_get_unordered(&thread->state) == Exiting) || (atomic_get_unordered(&thread->state) == Lingering)); 340 assert((atomic_get_unordered(&thread->state) == Entering) || 341 (atomic_get_unordered(&thread->state) == Exiting) || 342 (atomic_get_unordered(&thread->state) == Lingering)); 341 343 342 344 /* Clear cpu->fpu_owner if set to this thread. */
Note:
See TracChangeset
for help on using the changeset viewer.