Changeset 49510db for libcfa/src/concurrency/pthread.cfa
- Timestamp:
- Jan 29, 2025, 9:09:20 AM (8 months ago)
- Branches:
- master
- Children:
- a22e8b4
- Parents:
- a950021 (diff), c699602 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/pthread.cfa
ra950021 r49510db 9 9 // Author : Zhenyan Zhu 10 10 // Created On : Sat Aug 6 16:29:18 2022 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Mon Sep 4 15:37:51 202311 // Last Modified By : Kyoung Seo 12 // Last Modified On : Mon Jan 27 20:35:00 2025 13 13 // Update Count : 1 14 14 // … … 392 392 393 393 pthread_t pthread_self(void) libcfa_public __THROW { 394 return (pthread_t)((uintptr_t)active_thread() - (sizeof(cfaPthread) - sizeof(thread$)));394 return (pthread_t)((uintptr_t)active_thread()); 395 395 } 396 396
Note:
See TracChangeset
for help on using the changeset viewer.