@@ -48,6 +48,7 @@ static const char usage_str[] =
48
48
" Common Options:\n "
49
49
#ifdef ENABLE_THREADS
50
50
" --threads Enable multi-threading support\n "
51
+ " --only=IDENT Only trace a thread identified by IDENT (requires --threads)\n "
51
52
" -d, --dump Dump stacks from all threads (implies --threads)\n "
52
53
#else
53
54
" -d, --dump Dump the current interpreter stack\n "
@@ -189,6 +190,7 @@ int Prober::ParseOpts(int argc, char **argv) {
189
190
{" seconds" , required_argument, 0 , ' s' },
190
191
#if ENABLE_THREADS
191
192
{" threads" , no_argument, 0 , ' L' },
193
+ {" only" , required_argument, 0 , ' i' },
192
194
#endif
193
195
{" no-line-numbers" , no_argument, 0 , ' n' },
194
196
{" output" , required_argument, 0 , ' o' },
@@ -238,7 +240,10 @@ int Prober::ParseOpts(int argc, char **argv) {
238
240
std::cout << PYFLAME_VERSION_STR << " \n\n " << usage_str;
239
241
return 0 ;
240
242
break ;
241
- #ifdef ENABLE_THREADS
243
+ #if ENABLE_THREADS
244
+ case ' i' :
245
+ thread_id_ = std::stoul (optarg );
246
+ break ;
242
247
case ' L' :
243
248
enable_threads_ = true ;
244
249
break ;
@@ -309,6 +314,11 @@ int Prober::ParseOpts(int argc, char **argv) {
309
314
std::cerr << " WARNING: Specifying a PID to trace without -p is deprecated; "
310
315
" see Pyflame issue #99 for details.\n " ;
311
316
}
317
+ if (thread_id_ > 0 && !enable_threads_) {
318
+ std::cerr << " Option --only requires --threads.\n " ;
319
+ std::cerr << usage_str;
320
+ return 1 ;
321
+ }
312
322
interval_ = ToMicroseconds (sample_rate_);
313
323
return -1 ;
314
324
}
@@ -416,7 +426,9 @@ int Prober::ProbeLoop(const PyFrob &frobber, std::ostream *out) {
416
426
}
417
427
418
428
for (const auto &thread : threads) {
419
- call_stacks.push_back ({now, thread.frames ()});
429
+ if (thread_id_ == 0 || thread.id () == thread_id_) {
430
+ call_stacks.push_back ({now, thread.frames ()});
431
+ }
420
432
}
421
433
422
434
if (check_end && (now + interval_ >= end)) {
0 commit comments