Changeset 22206
- Timestamp:
- 09/08/07 16:47:37 (15 months ago)
- Files:
-
- 1 modified
-
haiku/trunk/src/system/kernel/team.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
haiku/trunk/src/system/kernel/team.cpp
r22187 r22206 2601 2601 // the thread must be the team's main thread, as that 2602 2602 // determines its process ID 2603 if (thread == NULL &&thread != thread->team->main_thread)2603 if (thread == NULL || thread != thread->team->main_thread) 2604 2604 return B_BAD_THREAD_ID; 2605 2605
