Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
perf /
Delete
Unzip
Name
Size
Permission
Date
Action
bpf_perf.h
1.12
KB
-rw-r--r--
2026-05-19 00:00
core.h
508
B
-rw-r--r--
2026-05-19 00:00
cpumap.h
4.25
KB
-rw-r--r--
2026-05-19 00:00
event.h
12.29
KB
-rw-r--r--
2026-05-19 00:00
evlist.h
2.05
KB
-rw-r--r--
2026-05-19 00:00
evsel.h
1.92
KB
-rw-r--r--
2026-05-19 00:00
mmap.h
441
B
-rw-r--r--
2026-05-19 00:00
perf_dlfilter.h
6.09
KB
-rw-r--r--
2026-05-19 00:00
threadmap.h
926
B
-rw-r--r--
2026-05-19 00:00
Save
Rename
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LIBPERF_THREADMAP_H #define __LIBPERF_THREADMAP_H #include <perf/core.h> #include <sys/types.h> struct perf_thread_map; LIBPERF_API struct perf_thread_map *perf_thread_map__new_dummy(void); LIBPERF_API struct perf_thread_map *perf_thread_map__new_array(int nr_threads, pid_t *array); LIBPERF_API void perf_thread_map__set_pid(struct perf_thread_map *map, int idx, pid_t pid); LIBPERF_API char *perf_thread_map__comm(struct perf_thread_map *map, int idx); LIBPERF_API int perf_thread_map__nr(struct perf_thread_map *threads); LIBPERF_API pid_t perf_thread_map__pid(struct perf_thread_map *map, int idx); LIBPERF_API int perf_thread_map__idx(struct perf_thread_map *map, pid_t pid); LIBPERF_API struct perf_thread_map *perf_thread_map__get(struct perf_thread_map *map); LIBPERF_API void perf_thread_map__put(struct perf_thread_map *map); #endif /* __LIBPERF_THREADMAP_H */