@@ -260,7 +260,7 @@ ptrace_visit (void)
260
260
if (pid < 0 )
261
261
continue ;
262
262
263
- if (ptrace (PTRACE_ATTACH , pid , NULL , NULL ) < 0 )
263
+ if (ptrace (PTRACE_SEIZE , pid , NULL , NULL ) < 0 )
264
264
{
265
265
if (errno == EPERM )
266
266
{
@@ -273,7 +273,9 @@ ptrace_visit (void)
273
273
if (pid < 0 )
274
274
continue ;
275
275
276
- if (ptrace (PTRACE_DETACH , pid , NULL , NULL ) < 0 )
276
+ if (kill (pid , SIGSTOP ) < 0
277
+ || waitpid (pid , NULL , 0 ) < 0
278
+ || ptrace (PTRACE_DETACH , pid , NULL , NULL ) < 0 )
277
279
{
278
280
fprintf (stderr ,
279
281
_ ("%s: %ld: cannot detach from process: %s\n" ),
@@ -303,16 +305,12 @@ ptrace_visit (void)
303
305
}
304
306
}
305
307
306
- if (waitpid (pid , NULL , 0 ) < 0
307
- || ptrace (PTRACE_CONT , pid , NULL , NULL ) < 0 )
308
+ if (verbose )
308
309
{
309
- fprintf (stderr , _ ("%s: %ld: cannot attach to process: %s\n" ),
310
- program_name , (long )pid , strerror (errno ));
311
- exit (EXIT_FAILURE );
310
+ printf (_ ("%ld: waiting\n" ), (long )pid );
311
+ fflush (stdout );
312
312
}
313
313
314
- printf (_ ("%ld: waiting\n" ), (long )pid );
315
- fflush (stdout );
316
314
active_pid_count ++ ;
317
315
}
318
316
0 commit comments