1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __PERF_THREADS_H 2 #ifndef __PERF_THREADS_H 3 #define __PERF_THREADS_H 3 #define __PERF_THREADS_H 4 4 5 #include "hashmap.h" 5 #include "hashmap.h" 6 #include "rwsem.h" 6 #include "rwsem.h" 7 7 8 struct thread; 8 struct thread; 9 9 10 #define THREADS__TABLE_BITS 3 10 #define THREADS__TABLE_BITS 3 11 #define THREADS__TABLE_SIZE (1 << THREADS_ 11 #define THREADS__TABLE_SIZE (1 << THREADS__TABLE_BITS) 12 12 13 struct threads_table_entry { 13 struct threads_table_entry { 14 /* Key is tid, value is struct thread. 14 /* Key is tid, value is struct thread. */ 15 struct hashmap shard; 15 struct hashmap shard; 16 struct rw_semaphore lock; 16 struct rw_semaphore lock; 17 struct thread *last_match; 17 struct thread *last_match; 18 }; 18 }; 19 19 20 struct threads { 20 struct threads { 21 struct threads_table_entry table[THREA 21 struct threads_table_entry table[THREADS__TABLE_SIZE]; 22 }; 22 }; 23 23 24 void threads__init(struct threads *threads); 24 void threads__init(struct threads *threads); 25 void threads__exit(struct threads *threads); 25 void threads__exit(struct threads *threads); 26 size_t threads__nr(struct threads *threads); 26 size_t threads__nr(struct threads *threads); 27 struct thread *threads__find(struct threads *t 27 struct thread *threads__find(struct threads *threads, pid_t tid); 28 struct thread *threads__findnew(struct threads 28 struct thread *threads__findnew(struct threads *threads, pid_t pid, pid_t tid, bool *created); 29 void threads__remove_all_threads(struct thread 29 void threads__remove_all_threads(struct threads *threads); 30 void threads__remove(struct threads *threads, 30 void threads__remove(struct threads *threads, struct thread *thread); 31 int threads__for_each_thread(struct threads *t 31 int threads__for_each_thread(struct threads *threads, 32 int (*fn)(struct 32 int (*fn)(struct thread *thread, void *data), 33 void *data); 33 void *data); 34 34 35 #endif /* __PERF_THREADS_H */ 35 #endif /* __PERF_THREADS_H */ 36 36
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.